mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
24 lines
456 B
TOML
24 lines
456 B
TOML
[package]
|
|
name = "redox_cookbook"
|
|
version = "0.1.0"
|
|
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "cook"
|
|
path = "src/bin/cook.rs"
|
|
|
|
[lib]
|
|
name = "cookbook"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
blake3 = "0.3.3"
|
|
pbr = "1.0.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sha2 = "0.8.1"
|
|
termion = "1.5.5"
|
|
toml = "0.5.6"
|