mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
20 lines
497 B
TOML
20 lines
497 B
TOML
[package]
|
|
name = "test"
|
|
version = "0.1.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
proc_macro = { path = "../proc_macro" }
|
|
std = { path = "../std" }
|
|
panic_unwind = { path = "../panic_unwind" }
|
|
compiler_builtins = { path = "../compiler_builtins" }
|
|
registry-dep-using-std = { version = "*", features = ['mockbuild'] }
|
|
registry-dep-only-used-by-test = { version = "*" }
|
|
|
|
[features]
|
|
panic-unwind = []
|
|
backtrace = []
|
|
feature1 = ["std/feature1"]
|
|
default = []
|