1e5c6bc5b8
It is currently broken. (see https://github.com/japaric/xargo/issues/227) This makes it easier to for example patch whole crates away.
21 lines
465 B
TOML
21 lines
465 B
TOML
[package]
|
|
name = "compiler_builtins"
|
|
# Make sure the `compiler_builtins` from crates.io doesn't take precedence over this
|
|
# replacement by specifying a higher version than the one on crates.io.
|
|
version = "0.1.100"
|
|
authors = ["bjorn3 <bjorn3@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "compiler_builtins"
|
|
path = "lib.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[dependencies]
|
|
core = { path = "../sysroot_src/src/libcore" }
|
|
|
|
[features]
|
|
rustc-dep-of-std = []
|
|
c = []
|