| [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] |
| futures = "0.3.25" |
| num-traits = "0.2.15" |
| once_cell = "1.16.0" |
| petgraph = "0.6.2" |
| regex = "1.7.0" |
| serde = { version = "1.0.147", features = ["derive"] } |
| thiserror = "1.0.37" |
| tokio = { version = "1.21.2", features = ["full"] } |
| toml = "0.5.9" |
| |
| [dependencies.rustpython] |
| git = "https://github.com/RustPython/RustPython" |
| rev = "f885db8c61514f069979861f6b3bd83292086231" |
| features = ["freeze-stdlib"] |
| optional = true |
| |
| [features] |
| default = [] |
| python = ["dep:rustpython"] |
| strict = [] |
| |
| [dev-dependencies] |
| tempfile = "3.3.0" |