2018-02-01 02:04:01 +08:00
|
|
|
[package]
|
|
|
|
name = "testcrate"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
cast = { version = "0.2.2", features = ["x128"] }
|
|
|
|
rand = { version = "0.4", features = ["i128_support"] }
|
|
|
|
|
|
|
|
[dependencies.compiler_builtins]
|
|
|
|
path = ".."
|
|
|
|
default-features = false
|
2018-02-19 01:15:57 +08:00
|
|
|
features = ["no-lang-items"]
|
2018-02-01 02:04:01 +08:00
|
|
|
|
|
|
|
[target.'cfg(all(target_arch = "arm", not(any(target_env = "gnu", target_env = "musl")), target_os = "linux"))'.dev-dependencies]
|
2018-02-25 05:48:27 +08:00
|
|
|
test = { git = "https://github.com/japaric/utest" }
|
|
|
|
utest-cortex-m-qemu = { default-features = false, git = "https://github.com/japaric/utest" }
|
|
|
|
utest-macros = { git = "https://github.com/japaric/utest" }
|
2018-02-01 02:04:01 +08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
c = ["compiler_builtins/c"]
|
2018-02-19 01:15:57 +08:00
|
|
|
mem = ["compiler_builtins/mem"]
|
|
|
|
mangled-names = ["compiler_builtins/mangled-names"]
|
|
|
|
no_std = []
|