-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
20 lines (18 loc) · 1.15 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "boomer"
version = "0.1.0"
authors = ["Maxime Ripard <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0.97", default-features = false, features = ["std"] }
byteorder = { version = "1.5.0", default-features = false, features = ["std"] }
clap = { version = "4.5.34", default-features = false, features = ["cargo", "derive", "help", "std"] }
image = { version = "0.25.6", default-features = false, features = ["png"] }
log = { version = "0.4.27", default-features = false, features = ["std"] }
nucleid = { git = "https://github.com/mripard/nucleid.git", rev = "b084a0fb0dc998c68b1ca660c7ac876a00a815fd" }
qrcode = { version = "0.14.1", default-features = false, features = ["image"] }
serde = { version = "1.0.219", default-features = false, features = ["derive", "std"] }
serde_json = { version = "1.0.140", default-features = false, features = ["std"] }
simplelog = { version = "0.12.2", default-features = false, features = ["termcolor"] }
twox-hash = { version = "2.1.0", default-features = false, features = ["std", "xxhash64"] }