Skip to content

Commit

Permalink
We have to use edition=2018 with codingame
Browse files Browse the repository at this point in the history
  • Loading branch information
lpenz committed Sep 10, 2024
1 parent 935f912 commit 63eaeb6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "the-fall"
version = "0.0.1"
authors = ["Leandro Lisboa Penz <lpenz@lpenz.org>"]
build = "build.rs"
edition = "2021"
edition = "2018"

[lib]
doctest = false
Expand Down
1 change: 1 addition & 0 deletions src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// This file is subject to the terms and conditions defined in
// file 'LICENSE', which is part of this source code package.

use std::convert::{TryFrom, TryInto};
use std::io;
use std::str::FromStr;

Expand Down
1 change: 1 addition & 0 deletions tests/episode1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// This file is subject to the terms and conditions defined in
// file 'LICENSE', which is part of this source code package.

use std::convert::TryFrom;
use std::iter;

use anyhow::Result;
Expand Down

0 comments on commit 63eaeb6

Please sign in to comment.