20 lines
352 B
TOML
20 lines
352 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
build = "build.rs"
|
|
name = "profiler_builtins"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "profiler_builtins"
|
|
path = "lib.rs"
|
|
test = false
|
|
bench = false
|
|
doc = false
|
|
|
|
[dependencies]
|
|
core = { path = "../libcore" }
|
|
compiler_builtins = { path = "../rustc/compiler_builtins_shim" }
|
|
|
|
[build-dependencies]
|
|
cc = "1.0.1"
|