Skip to content

Commit 276a930

Browse files
authored
Merge pull request #12 from alexcrichton/update-support
Update support for being built in rust-lang/rust
2 parents ff4923a + a32845f commit 276a930

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Cargo.toml

+6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ according to Unicode Standard Annex #11 rules.
1717

1818
exclude = [ "target/*", "Cargo.lock" ]
1919

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+
2025
[features]
2126
default = []
2227
no_std = []
2328
bench = []
29+
rustc-dep-of-std = ['std', 'core', 'compiler_builtins']

0 commit comments

Comments
 (0)