We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf011b3 commit 71ff3c2Copy full SHA for 71ff3c2
compiler/base/Cargo.toml
@@ -2,6 +2,7 @@
2
name = "playground"
3
version = "0.0.1"
4
authors = ["The Rust Playground"]
5
+resolver = "2"
6
[profile.dev]
7
codegen-units = 1
8
incremental = false
top-crates/src/main.rs
@@ -58,6 +58,7 @@ struct TomlPackage {
58
name: String,
59
version: String,
60
authors: Vec<String>,
61
+ resolver: String,
62
}
63
64
/// A mapping of a crates name to its identifier used in source code
@@ -447,6 +448,7 @@ fn main() {
447
448
name: "playground".to_owned(),
449
version: "0.0.1".to_owned(),
450
authors: vec!["The Rust Playground".to_owned()],
451
+ resolver: "2".to_owned(),
452
},
453
profile: Profiles {
454
dev: Profile {
0 commit comments