Skip to content

Commit 87e67c1

Browse files
refactor: split off board_info into separate package
Code moved to bmcd repo as independent package
1 parent eb72fa9 commit 87e67c1

File tree

6 files changed

+85
-297
lines changed

6 files changed

+85
-297
lines changed

Cargo.lock

+73-57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-5
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,31 @@ keywords= ["turing-pi", "tpi", "CLI", "edge-computing", "board-management"]
1313
exclude = [".github", "deny.toml", "scripts/ci/*"]
1414

1515
[dependencies]
16-
anyhow = "1.0.95"
16+
anyhow = "1.0.96"
1717
byteorder = "1.5.0"
1818
bytes = "1.10.0"
1919
chrono = "0.4.39"
20-
clap = { version = "4.5.29", features = ["derive", "wrap_help", "env"] }
21-
clap_complete = "4.5.44"
20+
clap = { version = "4.5.30", features = ["derive", "wrap_help", "env"] }
21+
clap_complete = "4.5.45"
2222
crc32fast = "1.4.2"
2323
crossterm = "=0.24.0"
2424
dirs = "6.0.0"
2525
hex = { version = "0.4.3" }
2626
indicatif = { version = "0.17.11", features = ["tokio"] }
2727
platform-info = "2.0.5"
2828
reqwest = { version = "0.12.12", default-features = false, features = ["gzip", "json", "multipart", "stream"] }
29-
serde_json = "1.0.138"
29+
serde_json = "1.0.139"
3030
tokio = { version = "1.43.0", features = ["rt", "rt-multi-thread", "macros", "fs"] }
3131
tokio-util = "0.7.13"
3232
url = "2.5.4"
33+
board-info = { git = "https://github.com/turing-machines/bmcd", features = ["clap_derive"], optional = true }
34+
35+
3336

3437
[features]
3538
default = ["reqwest/rustls-tls"]
3639
native-tls = ["reqwest/native-tls"]
37-
localhost = []
40+
localhost = ["board-info"]
3841

3942
[profile.release]
4043
lto = true

0 commit comments

Comments
 (0)