-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
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
Rust 1.77の新機能を導入する #771
Rust 1.77の新機能を導入する #771
Conversation
@@ -18,7 +18,7 @@ chrono = { version = "0.4.26", default-features = false } | |||
clap = "4.0.10" | |||
color-eyre = "0.6.2" | |||
colorchoice = "1.0.0" | |||
cstr = "0.2.11" | |||
cstr = "0.2.11" # https://github.com/dtolnay/syn/issues/1502 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
このコメントが解消される条件をメモっておかないてあげると、他の人も意図がわかって良さげな気がしました!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
多分dtolnay氏か誰かが腰を上げればスムーズに解決しそうなissueなので、長々と文脈を書かないでいいかなと思いました。cstrがどういうライブラリなのかを考えればリンク先のissueのタイトルで大体はわかるようになっていると思います。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
多分dtolnay氏か誰かが腰を上げればスムーズに解決しそうなissue
そう言ってるうちに実装されましたね。あとはクレートとしてのリリースがなされればc"…"
への置き換えができるはず。
dtolnay/syn#1622
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
変更するかそのままかどちらでも良いと思います、その後マージしていただければ!
内容
Rust 1.77に入った
f32::round_ties_even
と<[_]>::chunk_by
を使います。(厳密に言うと後者はもう使われていて、コピーしてきたものはただのdead codeになっているのですが)
cstrも
c"…"
に置き換えたかったのですが、残念ながらsynがまだ対応していないためderive macroもcbindgenもまだc"…"
を理解しません。そのためcstr!
の置き換えは現状一つも不可能なので、コメントだけ入れています。関連 Issue
Update dependency Rust to v1.77.1 #767Update dependency Rust to v1.77.0 #763
その他