zc706/Cargo.toml

33 lines
728 B
TOML
Raw Normal View History

2019-05-05 20:56:23 +08:00
[package]
name = "zc706"
version = "0.0.0"
authors = ["Astro <astro@spaceboyz.net>"]
edition = "2018"
[profile.dev]
panic = "abort"
lto = false
2019-05-05 20:56:23 +08:00
[profile.release]
panic = "abort"
debug = true
2019-05-25 08:38:05 +08:00
[features]
target_zc706 = []
target_cora_z7_10 = []
default = ["target_zc706"]
2019-05-05 20:56:23 +08:00
[dependencies]
r0 = "0.2"
vcell = "0.1"
2019-05-05 20:56:23 +08:00
volatile-register = "0.2"
bit_field = "0.10"
compiler_builtins = { version = "~0.1", default-features = false, features = ["mem", "no-lang-items"]}
2019-11-01 02:20:49 +08:00
linked_list_allocator = { version = "0.6", default-features = false }
2019-11-11 07:28:46 +08:00
[dependencies.smoltcp]
git = "https://github.com/m-labs/smoltcp.git"
rev = "8eb01aca364aefe5f823d68d552d62c76c9be4a3"
features = ["ethernet", "proto-ipv4", "socket-tcp"]
default-features = false