rust/src/libtest/Cargo.toml
2019-03-19 13:58:47 +01:00

16 lines
333 B
TOML

[package]
authors = ["The Rust Project Developers"]
name = "test"
version = "0.0.0"
edition = "2018"
[lib]
name = "test"
path = "lib.rs"
crate-type = ["dylib", "rlib"]
[dependencies]
libtest = { version = "0.0.1" }
# not actually used but needed to always have proc_macro in the sysroot
proc_macro = { path = "../libproc_macro" }