We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ff4923a + a32845f commit 276a930Copy full SHA for 276a930
Cargo.toml
@@ -17,7 +17,13 @@ according to Unicode Standard Annex #11 rules.
17
18
exclude = [ "target/*", "Cargo.lock" ]
19
20
+[dependencies]
21
+std = { version = "1.0", package = "rustc-std-workspace-std", optional = true }
22
+core = { version = "1.0", package = "rustc-std-workspace-core", optional = true }
23
+compiler_builtins = { version = "0.1", optional = true }
24
+
25
[features]
26
default = []
27
no_std = []
28
bench = []
29
+rustc-dep-of-std = ['std', 'core', 'compiler_builtins']
0 commit comments