1[package]
2name = "test"
3version = "0.1.0"
4authors = ["Alex Crichton <alex@alexcrichton.com>"]
5edition = "2018"
6
7[dependencies]
8proc_macro = { path = "../proc_macro" }
9std = { path = "../std" }
10panic_unwind = { path = "../panic_unwind" }
11compiler_builtins = { path = "../compiler_builtins" }
12registry-dep-using-std = { version = "*", features = ['mockbuild'] }
13
14[features]
15panic-unwind = []
16backtrace = []
17feature1 = ["std/feature1"]
18default = []
19