30 lines
643 B
TOML
30 lines
643 B
TOML
[package]
|
|
name = "cyberstorm"
|
|
version = "0.1.0"
|
|
authors = ["avitex <avitex@wfxlabs.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
zc = "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 = ["rt-multi-thread", "fs", "macros"] }
|
|
validator = { version = "0.12", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
tera = "1.6"
|
|
anyhow = "1.0"
|
|
regex = "1"
|
|
lazy_static = "1"
|
|
structopt = "0.3"
|
|
phf = "0.8.0"
|
|
includedir = "0.6"
|
|
|
|
[build-dependencies]
|
|
includedir_codegen = "0.6"
|
|
glob = "0.3"
|