80 lines
2.2 KiB
TOML
80 lines
2.2 KiB
TOML
[package]
|
|
name = "librepages"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
homepage = "https://git.batsense.net/LibrePages/librepages"
|
|
repository = "https://git.batsense.net/LibrePages/librepages"
|
|
documentation = "https://git.batsense.net/LibrePages/librepages"
|
|
readme = "https://git.batsense.net/LibrePages/librepages/blob/master/README.md"
|
|
license = "AGPLv3 or later version"
|
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4.0.1"
|
|
actix-http = "3.0.4"
|
|
actix-identity = "0.4.0"
|
|
actix-rt = "2"
|
|
actix-web-codegen-const-routes = { version = "0.1.0", tag = "0.1.0", git = "https://github.com/realaravinth/actix-web-codegen-const-routes" }
|
|
argon2-creds = { branch = "master", git = "https://github.com/realaravinth/argon2-creds"}
|
|
sqlx = { version = "0.6.2", features = ["runtime-actix-rustls", "postgres", "time", "offline", "json", "uuid"] }
|
|
clap = { version = "4.0.0", features = ["derive"]}
|
|
libconfig = { version = "0.1.0", git = "https://git.batsense.net/librepages/libconfig" }
|
|
libconductor = { version = "0.1.0", git = "https://git.batsense.net/librepages/conductor/" }
|
|
|
|
config = "0.14"
|
|
git2 = "0.19.0"
|
|
|
|
serde = { version = "1", features = ["derive", "rc"]}
|
|
serde_json = "1"
|
|
|
|
pretty_env_logger = "0.5"
|
|
|
|
lazy_static = "1.4"
|
|
url = { version = "2.2", features = ["serde"] }
|
|
urlencoding = "2.1.0"
|
|
|
|
derive_more = "0.99"
|
|
|
|
num_cpus = "1.13"
|
|
|
|
tokio = { version = "1", features=["sync"]}
|
|
num_enum = "0.7.0"
|
|
|
|
mime_guess = "2.0.4"
|
|
mime = "0.3.16"
|
|
rust-embed = "8.0.0"
|
|
rand = "0.8.5"
|
|
tracing = { version = "0.1.37", features = ["log"]}
|
|
tracing-actix-web = "0.7.0"
|
|
toml = "0.8.0"
|
|
serde_yaml = "0.9.14"
|
|
uuid = { version = "1.2.2", features = ["serde"] }
|
|
reqwest = { version = "0.12.0", features = ["json"] }
|
|
sha2 = "0.10.6"
|
|
hmac = "0.12.1"
|
|
hex= "0.4.3"
|
|
|
|
[dependencies.cache-buster]
|
|
git = "https://github.com/realaravinth/cache-buster"
|
|
|
|
[dependencies.tera]
|
|
default-features = false
|
|
version = "1.15.0"
|
|
|
|
[dependencies.actix-auth-middleware]
|
|
branch = "v4"
|
|
features = ["actix_identity_backend"]
|
|
git = "https://github.com/realaravinth/actix-auth-middleware"
|
|
version = "0.2"
|
|
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3.24"
|
|
mktemp = "0.5.0"
|
|
|
|
|
|
[workspace]
|
|
exclude = ["utils/cache-bust"]
|