forked from M-Labs/artiq
96f697ec96
Fixes #883.
31 lines
547 B
TOML
31 lines
547 B
TOML
[package]
|
|
authors = ["M-Labs"]
|
|
name = "board"
|
|
version = "0.0.0"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "board"
|
|
path = "lib.rs"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
build_misoc = { path = "../libbuild_misoc" }
|
|
|
|
[dependencies]
|
|
byteorder = { version = "1.0", default-features = false }
|
|
|
|
[dependencies.compiler_builtins]
|
|
git = "https://github.com/m-labs/compiler-builtins"
|
|
rev = "ca06a5e"
|
|
features = ["mem"]
|
|
|
|
[dependencies.smoltcp]
|
|
git = "https://github.com/m-labs/smoltcp"
|
|
rev = "181083f"
|
|
default-features = false
|
|
optional = true
|
|
|
|
[features]
|
|
uart_console = []
|