2017-12-28 21:17:49 +08:00
|
|
|
[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 }
|
2017-12-31 17:15:22 +08:00
|
|
|
crc = { version = "1.7", default-features = false }
|
2018-05-15 01:54:29 +08:00
|
|
|
board_misoc = { path = "../libboard_misoc", features = ["uart_console", "smoltcp"] }
|
2020-01-21 13:58:23 +08:00
|
|
|
smoltcp = { version = "0.6.0", default-features = false, features = ["ethernet", "proto-ipv4", "proto-ipv6", "socket-tcp"] }
|
2021-07-15 15:58:13 +08:00
|
|
|
riscv = { version = "0.6.0", features = ["inline-asm"] }
|