CloudMandala/Cargo.toml

120 lines
3.2 KiB
TOML

[package]
name = "cloudmandala"
version = "0.1.3"
authors = ["JesusPerez <jpl@jesusperez.pro>"]
edition = "2021"
[dependencies]
log = "0.4"
stderrlog = "0.5"
structopt = "0.3"
faccess = "0.2.3"
##
anyhow = "1.0.40"
# argonautica = "0.2.0"
#
##
blake3 = "1.3.0"
base64 = "0.13.0"
base64-stream = "1.2.5"
captcha = "0.0.8"
chrono = "0.4"
dotenv = "0.15.0"
debug_stub_derive = "0.3.0"
env_logger = "0.9.0"
envmnt = "0.9.1"
error-chain = "0.12.4"
failure = "0.1.8"
futures = "0.3.12"
futures-cpupool = "0.1.8"
git2 = "0.13"
glob = "0.3.0"
json = "0.12.4"
# jsonnet-rs = "0.6.0"
#jwtvault = "0.7.0"
# jwt-simple = "0.2"
lazy_static = "1.4.0"
once_cell = "1.7.2"
openssh = "0.8.0"
openssl-sys = "0.9"
openssl = { version = "0.10", features = ["v110"] }
qstring = "0.7.2"
#r2d2 = "0.8.9"
#r2d2_mysql="18.0.0"
# redis-async = "0.6.3"
rand = "0.8.3"
#redis = { version = "0.19.0", features = [ "tokio-comp", "cluster"] }
regex = "1.5.4"
reqwest = "0.11.9"
rfm = "1.0.2"
sanitize-filename = "0.3.0"
serde = { version = "1.0", features = ["derive"] }
#serde_cbor = "0.11.1"
serde_derive = "1.0"
serde_dhall = "0.11.0"
serde_json = "1.0"
serde_yaml = "0.8.23"
slab = "0.4.5"
# sqlx = { version = "0.4.0-beta.1", default-features = false, features = [ "mysql", "macros", "runtime-actix" ] }
#sqlx = {version = "0.5.1", default-features = false, features = ["macros","runtime-tokio-rustls","sqlite", "mysql", "postgres", "decimal", "chrono"]}
sthash = "0.2.10"
tempfile = "3.2.0"
tera = "1.8.0"
# tikv-client = { git = "https://github.com/tikv/client-rust.git" }
#tokio = { version = "0.3", features = ["time", "stream"] }
#tokio = { version = "0.3", features = ["full"] }
#tokio = { version = "0.3.7", features = ["full"] }
tokio = { version = "1.5.0", features = ["full"] }
tokio-util = { version = "0.6", features = ["codec"] }
hyper = { version = "0.14.7", features = ["full"] }
thiserror = "1.0"
toml = "0.5"
# thrussh = "0.32.2"
# thrussh-keys = "0.20.2"
#yaml-rust = "0.4"
uuid = { version = "0.8", features = ["serde", "v5"] }
pretty_env_logger = "0.4"
tkdr = { path = "../rust_lib/tkdr" }
key_of_life = { path = "../rust_lib/key_of_life" }
clds = { path = "../rust_lib/clds" }
# https://nnethercote.github.io/perf-book/build-configuration.html
[profile.release]
#opt-level = 3
lto = true
codegen-units = 1
opt-level = "z"
[dev-dependencies]
tracing-subscriber = "0.3.6"
[build-dependencies]
envmnt = "0.9.1"
[features]
# Nothing by default
default = []
# Easily turn it all on
# Uncomment to sacrifice Drop-on-panic cleanup and std::panic::catch_unwind
# for ~24K space saving
#panic = 'abort'
# [patch.crates-io]
# raft-proto = { git = "https://github.com/tikv/raft-rs", rev = "e624c1d48460940a40d8aa69b5329460d9af87dd" }
[workspace.metadata.local-install]
cargo-web = "0.1" # == "^0.6" - includes "0.6.26" - locked by default
# cargo-web = { version = "0.6", registry = "crates.io", locked = false } # `locked = false` ignores cargo-web's Cargo.lock
# cargo-web = { path = "../cargo-web" }
# cargo-web = { git = "https://github.com/koute/cargo-web" }
# cargo-web = { git = "https://github.com/koute/cargo-web", branch = "master" }
# cargo-web = { git = "https://github.com/koute/cargo-web", rev = "a9895bf536e8ac6a0806382886b7be90138f01f3" }