[package]
name = "tusktsk"
version = "2.1.3"
edition = "2021"
authors = ["Cyberboost LLC"]
description = "🦀 TuskTsk Enhanced - Ultra-fast Rust configuration parser with maximum syntax flexibility"
license-file = "LICENSE"
repository = "https://github.com/cyber-boost/tusktsk"
homepage = "https://tuskt.sk"
keywords = ["configuration", "parser", "tsk", "tusktsk"]
categories = ["parsing"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
clap = { version = "4.0", features = ["derive"] }
anyhow = "1.0"
thiserror = "1.0"
regex = "1.0"
urlencoding = "2.1"
nom = "7.0"
sha2 = "0.10"
md5 = "0.7"
chrono = { version = "0.4", features = ["serde"] }
walkdir = "2.3"
notify = "6.1"
wasm-bindgen = { version = "0.2", optional = true }
js-sys = { version = "0.3", optional = true }
web-sys = { version = "0.3", features = ["console"], optional = true }
console_error_panic_hook = { version = "0.1", optional = true }
lazy_static = "1.4"
memchr = "2.5"
dirs = "5.0"
tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
env_logger = "0.10"
log = "0.4"
reqwest = { version = "0.11", features = ["json"] }
rand = "0.8"
pbkdf2 = "0.12"
hmac = "0.12"
aes-gcm = "0.10"
argon2 = "0.5"
base64 = "0.21"
hex = "0.4"
jsonwebtoken = "9.1"
once_cell = "1.18"
uuid = { version = "1.0", features = ["v4"] }
async-trait = "0.1"
toml = "0.8"
csv = "1.2"
quick-xml = "0.31"
semver = "1.0"
zip = "0.6"
flate2 = "1.0"
tar = "0.4"
url = "2.4"
mime = "0.3"
tempfile = "3.8"
xml-rs = "0.8"
multipart = "0.18"
redis = { version = "0.23", features = ["tokio-comp", "connection-manager"] }
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "mysql", "sqlite"] }
rusqlite = { version = "0.29", features = ["bundled"] }
tonic = { version = "0.10", features = ["tls", "prost"] }
prost = "0.12"
tokio-tungstenite = "0.20"
tokio-stream = "0.1"
hyper = { version = "0.14", features = ["full"] }
prometheus = { version = "0.13", features = ["process"] }
opentelemetry = { version = "0.20", features = ["rt-tokio"] }
opentelemetry-jaeger = "0.19"
opentelemetry-zipkin = "0.19"
k8s-openapi = { version = "0.20", features = ["v1_22"] }
kube = { version = "0.87", features = ["runtime", "derive"] }
consul = "0.4"
oauth2 = "4.4"
ldap3 = "0.11"
ring = "0.17"
totp-lite = "2.0"
qrcode = "0.14"
webauthn-rs = "0.5"
dashmap = "5.5"
sha3 = "0.10"
zeroize = { version = "1.0", features = ["derive"] }
casbin = "2.2"
rpassword = "7.0"
[dev-dependencies]
criterion = "0.5"
proptest = "1.0"
k8s-openapi = { version = "0.20", features = ["v1_22"] }
[lib]
name = "tusktsk"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "tsk"
path = "src/main.rs"
[[test]]
name = "operator_tests"
path = "src/tests/mod.rs"
[features]
default = []
full = ["nodejs", "unity", "azure", "ruby", "jekyll", "package-managers", "wasm"]
wasm = ["wasm-bindgen", "js-sys", "web-sys", "console_error_panic_hook"]
nodejs = []
unity = []
azure = []
ruby = []
jekyll = []
package-managers = []
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
wasm-bindgen = "0.2"
js-sys = "0.3"
web-sys = { version = "0.3", features = ["console"] }