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 e4f478d commit b862ec7Copy full SHA for b862ec7
Cargo.toml
@@ -21,6 +21,12 @@ test = false
21
[target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies]
22
libc = { version = "0.2", default-features = false }
23
24
+[dependencies]
25
+# For more information on these dependencies see rust-lang/rust's
26
+# `src/tools/rustc-std-workspace` folder
27
+core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' }
28
+compiler_builtins = { version = '0.1.0', optional = true }
29
+
30
[dev-dependencies]
31
rand = "0.3"
32
@@ -37,3 +43,4 @@ debug = []
37
43
38
44
# Enable experimental support for the standard library's unstable allocator API.
39
45
allocator-api = []
46
+rustc-dep-of-std = ['core', 'compiler_builtins/rustc-dep-of-std']
0 commit comments