blob: 7e12ce20a9c9583916b32c878820bd726043c7f3 [file] [log] [blame]
[package]
name = "qg"
version = "0.1.0"
authors = ["The Pigweed Authors"]
edition = "2021"
rust-version = "1.65"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-channel = "1.8.0"
fixedbitset = "0.4.2"
futures = "0.3.25"
num-traits = "0.2.15"
nom = "7.1.2"
once_cell = "1.16.0"
petgraph = "0.6.2"
regex = "1.7.0"
reqwest = "0.11.13"
serde = { version = "1.0.147", features = ["derive"] }
sha2 = "0.10.6"
thiserror = "1.0.37"
tokio = { version = "1.21.2", features = ["full"] }
toml = "0.5.9"
walkdir = "2"
[dependencies.rustpython]
git = "https://github.com/RustPython/RustPython"
rev = "ba427c86909f41451cbb76cd7301322afc817626"
features = ["freeze-stdlib"]
optional = true
[features]
default = []
python = ["dep:rustpython"]
strict = []
[dev-dependencies]
tempfile = "3.3.0"