43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "cyberstorm"
|
|
version = "0.1.0"
|
|
authors = ["avitex <avitex@wfxlabs.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[features]
|
|
default = ["cli", "mdbook-renderer"]
|
|
cli = ["structopt", "tokio/macros", "tokio/rt-multi-thread"]
|
|
mdbook-renderer = ["mdbook", "includedir", "includedir_codegen", "glob", "phf"]
|
|
|
|
[[bin]]
|
|
name = "cyberstorm"
|
|
required-features = ["cli"]
|
|
|
|
[dependencies]
|
|
zc = "0.4"
|
|
log = "0.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.5"
|
|
async-trait = "0.1"
|
|
strum = { version = "0.20", features = ["derive"] }
|
|
roxmltree = "0.14"
|
|
tokio = { version = "1", features = ["fs"] }
|
|
thiserror = "1.0"
|
|
tera = "1.6"
|
|
anyhow = "1.0"
|
|
regex = "1"
|
|
lazy_static = "1"
|
|
env_logger = "0.8"
|
|
chrono = "0.4"
|
|
|
|
structopt = { version = "0.3", optional = true }
|
|
phf = { version = "0.8.0", optional = true }
|
|
includedir = { version = "0.6", optional = true }
|
|
mdbook = { version = "0.4", features = ["search"], optional = true }
|
|
|
|
[build-dependencies]
|
|
includedir_codegen = { version = "0.6", optional = true }
|
|
glob = { version = "0.3", optional = true }
|