Update maturin#140
Conversation
| name = "streamtracer" | ||
| version = "2.0.1" | ||
| version = "2.1.0" | ||
| edition = "2021" |
There was a problem hiding this comment.
I honestly am not sure what this version is actually used for, but I guess it should be in sync with the one in pyproject for good measure. I will update and do a rc2 shortly.
There was a problem hiding this comment.
Google says:
The edition key is an optional key that affects which Rust Edition your package is compiled with. Setting the edition key in [package] will affect all targets/crates in the package, including test suites, benchmarks, binaries, examples, etc.
Most manifests have the edition field filled in automatically by cargo new with the latest stable edition. By default cargo new creates a manifest with the 2021 edition currently.
If the edition field is not present in Cargo.toml, then the 2015 edition is assumed for backwards compatibility. Note that all manifests created with cargo new will not use this historical fallback because they will have edition explicitly specified to a newer value.
There was a problem hiding this comment.
So we should leave it as 2021, the new version 2024 is under progress.
I just keep finding things to do