We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cargo atcoder new
私は rustup でデフォルトの toolchain を stable-x86_64-unknown-linux-gnu としているのですが、AtCoder の Rust は 1.42.0 であるため、~/.config/cargo-atcoder.toml 内で rust-toolchain を生成するように指定しています。
stable-x86_64-unknown-linux-gnu
~/.config/cargo-atcoder.toml
rust-toolchain
[project] # to create `rust-toolchain` file, uncomment this line. rustc_version = "1.42.0"
先日 Rust 1.56.0 が stable としてリリースされ、 2021 edition が始まりました。これを反映させるため rustup の update を行いましたが、その影響で cargo new によって生成されるクレートは edition="2021" の指定が入るようになりました。 以上の理由から、cargo atcoder new ... で生成されるプロジェクトを動かすためには Cargo.toml を手で書き換えなければなりません。
edition="2021"
cargo atcoder new ...
Cargo.toml
プロジェクト生成部
cargo-atcoder/src/main.rs
Line 101 in 8382265
でオプションとして --edition 2018 を指定すればこれを解決できると思うのですが、
--edition 2018
cargo-atcoder.toml
rustc_version
edition
cargo new
といった解決策が考えられると思います。
この点について PR を送りたいと思っているのですが、どのようにするべきかご意見いただけると幸いです。
The text was updated successfully, but these errors were encountered:
template.new.edition
--edition
cargo atcoder new に毎回editionの指定が必要なのは煩雑になるので、edition も cargo-atcoder.toml で指定できるようにした方がいい気がします。
以下は #65 を元にして rustc_edition を cargo-atcoder.toml で指定できるように試みたものです。
rustc_edition
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
私は rustup でデフォルトの toolchain を
stable-x86_64-unknown-linux-gnu
としているのですが、AtCoder の Rust は 1.42.0 であるため、~/.config/cargo-atcoder.toml
内でrust-toolchain
を生成するように指定しています。先日 Rust 1.56.0 が stable としてリリースされ、 2021 edition が始まりました。これを反映させるため rustup の update を行いましたが、その影響で cargo new によって生成されるクレートは
edition="2021"
の指定が入るようになりました。以上の理由から、
cargo atcoder new ...
で生成されるプロジェクトを動かすためにはCargo.toml
を手で書き換えなければなりません。プロジェクト生成部
cargo-atcoder/src/main.rs
Line 101 in 8382265
でオプションとして
--edition 2018
を指定すればこれを解決できると思うのですが、cargo-atcoder.toml
で指定されたrustc_version
から指定するべき edition を自動で認識し、オプションとして付加するrustc_version
と同様にedition
もcargo-atcoder.toml
で指定できるようにするcargo atcoder new
に対してcargo new
で使用可能なコマンドを受け付けるようにして、実行時にそのまま渡すようにするといった解決策が考えられると思います。
この点について PR を送りたいと思っているのですが、どのようにするべきかご意見いただけると幸いです。
The text was updated successfully, but these errors were encountered: