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