artiq/artiq/firmware/bootloader/Cargo.toml

25 lines
584 B
TOML
Raw Normal View History

[package]
authors = ["M-Labs"]
name = "bootloader"
version = "0.0.0"
build = "build.rs"
[lib]
name = "bootloader"
crate-type = ["staticlib"]
path = "main.rs"
[build-dependencies]
build_misoc = { path = "../libbuild_misoc" }
[dependencies]
byteorder = { version = "1.0", default-features = false }
crc = { version = "1.7", default-features = false }
board_misoc = { path = "../libboard_misoc", features = ["uart_console", "smoltcp"] }
2017-12-28 22:51:20 +08:00
[dependencies.smoltcp]
git = "https://github.com/m-labs/smoltcp"
2018-01-30 11:29:08 +08:00
rev = "181083f"
2017-12-28 22:51:20 +08:00
default-features = false
features = ["proto-ipv4", "socket-tcp"]