docserver/Cargo.toml

84 lines
2.7 KiB
TOML
Raw Normal View History

2023-07-19 03:00:41 +00:00
[package]
name = "docserver"
2024-09-30 13:45:06 +00:00
version = "0.1.2"
2023-07-19 03:00:41 +00:00
edition = "2021"
2024-09-30 13:45:06 +00:00
authors = ["Jesus Perez <jpl@jesusperez.proJ>"]
publish = false
2023-07-19 03:00:41 +00:00
2024-09-30 13:45:06 +00:00
#[registry]
#default = "inrepo"
2023-07-19 03:00:41 +00:00
#[package.metadata.docs.rs]
#all-features = true
#rustdoc-args = ["--html-in-header", "rusdoc/header.html"]
[dependencies]
log = { version = "0.4.22", features = ["max_level_trace","release_max_level_trace"], package = "log" }
axum = { version = "0.7.5" } # use wrks axum_6
axum-server = { version = "0.7.1", features = ["tls-rustls"] }
tokio = { version = "1.39.2", features = ["full"] }
2024-09-30 13:45:06 +00:00
tower = { version = "0.5.1", features = ["util", "filter"] }
tower-http = { version = "0.5.2", features = ["fs", "cors", "trace", "add-extension", "auth", "compression-full"] }
tower-cookies = "0.10.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2023-07-19 03:00:41 +00:00
casbin = { version = "2.2.0", features = ["cached","explain","logging"], optional = true}
2023-07-20 01:18:32 +00:00
pasetoken-lib= {path = "./pasetoken", package = "pasetoken-lib" }
2024-09-30 13:45:06 +00:00
pasetors = { version = "0.7.0" }
2023-07-19 03:00:41 +00:00
serde = { version = "1.0.207", features = ["derive"] }
serde_derive = "1.0.207"
serde_json = "1.0.124"
toml = "0.8.19"
2023-07-19 03:00:41 +00:00
clap = { version = "4.5.15", features = ["derive"] }
git-version = "0.3.9"
once_cell = "1.19.0"
2023-07-19 03:00:41 +00:00
hyper = { version = "1.4.1", features = ["full"] }
tera = "1.20.0"
html-minifier = "5.0.0"
2023-09-19 21:15:58 +00:00
urlencoding = "2.1.3"
2023-07-19 03:00:41 +00:00
password-hash = { version = "0.5", features = ["alloc", "rand_core"] }
rand_core = { version = "0.6.4", features = ["getrandom"] }
2023-07-19 03:00:41 +00:00
argon2 = { version = "0.5", default-features = false, features = ["alloc", "simple"]}
rand_chacha = "0.3.1"
async-trait = "0.1.81"
2023-07-19 03:00:41 +00:00
async-session = "3.0.0"
async-sqlx-session = { version = "0.4.0", features = ["sqlite"] }
forwarded-header-value = "0.1.1"
lettre = { version = "0.11.7", features = ["smtp-transport", "tokio1", "tokio1-native-tls", "builder"] }
2023-07-19 03:00:41 +00:00
chrono = { version = "0.4.38" }
encoding = "0.2.33"
2023-07-19 03:00:41 +00:00
uuid = { version = "1.4.1", features = ["v4", "serde"] }
rand = "0.8.5"
walkdir = "2.5.0"
2023-07-19 03:00:41 +00:00
binascii = "0.1.4"
anyhow = "1.0.86"
2023-07-19 03:00:41 +00:00
totp-rs = { version = "5.6.0", features = ["qr","otpauth"] }
base32 = "0.5.1"
zxcvbn = "3.1.0"
2023-07-19 03:00:41 +00:00
futures= "0.3.30"
2024-09-30 13:45:06 +00:00
# async-sqlx-session supported until 0.6.2 For 0.8.2 dependencie has to be fixed
sqlx = { version = "0.6.3", features = ["all-databases","runtime-tokio-native-tls"] }
2023-07-19 03:00:41 +00:00
openidconnect = { version = "3.3.1", default-features = true, features = [] }
url = { version = "2.4", features = [] }
jsonwebtoken = "9.3.0"
2023-07-19 03:00:41 +00:00
[dev-dependencies]
async-std = { version = "1.12.0", features = ["default","attributes"] }
# [target.'cfg(target_arch = "wasm32")'.dependencies]
# getrandom = { version = "0.2", features = ["js"] }
[features]
default = ["casbin"]
#default = ["authstore"]
authstore = []