mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
40 lines
942 B
TOML
40 lines
942 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"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
blake3 = "=1.5.3" # 1.5.4 is incompatible with blake3 0.3 dependency from pkgar
|
|
ignore = "0.4"
|
|
object = { version = "0.36", features = ["build_core"] }
|
|
pbr = "1.0.2"
|
|
pkgar = { path = "pkgar/pkgar" }
|
|
pkgar-core = { path = "pkgar/pkgar-core" }
|
|
pkgar-keys = { path = "pkgar/pkgar-keys" }
|
|
redox-pkg = { git = "https://gitlab.redox-os.org/redox-os/pkgutils" }
|
|
redoxer = "0.2"
|
|
serde = { version = "=1.0.197", features = ["derive"] }
|
|
termion = "4"
|
|
toml = "0.8"
|
|
walkdir = "2.3.1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|