librepages/Cargo.toml

81 lines
2.2 KiB
TOML
Raw Permalink Normal View History

2021-10-29 20:22:14 +05:30
[package]
2022-12-19 06:32:51 +05:30
name = "librepages"
2021-10-29 20:22:14 +05:30
version = "0.1.0"
edition = "2021"
build = "build.rs"
2022-12-19 06:32:51 +05:30
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"
2021-10-29 20:22:14 +05:30
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]
2022-03-15 15:22:09 +05:30
actix-web = "4.0.1"
actix-http = "3.0.4"
2022-09-12 01:38:58 +05:30
actix-identity = "0.4.0"
2021-10-29 20:22:14 +05:30
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" }
2022-09-10 19:29:22 +05:30
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 = "3.2.20", features = ["derive"]}
libconfig = { version = "0.1.0", git = "https://git.batsense.net/librepages/libconfig" }
2022-12-15 01:00:15 +05:30
libconductor = { version = "0.1.0", git = "https://git.batsense.net/librepages/conductor/" }
2021-10-29 20:22:14 +05:30
2022-04-19 02:32:35 +05:30
config = "0.13"
2022-03-15 15:22:09 +05:30
git2 = "0.14.2"
2021-10-29 20:22:14 +05:30
serde = { version = "1", features = ["derive", "rc"]}
2021-10-29 20:22:14 +05:30
serde_json = "1"
pretty_env_logger = "0.4"
lazy_static = "1.4"
2022-12-15 01:00:15 +05:30
url = { version = "2.2", features = ["serde"] }
2022-09-12 01:38:58 +05:30
urlencoding = "2.1.0"
2021-10-29 20:22:14 +05:30
derive_more = "0.99"
num_cpus = "1.13"
2022-03-29 18:02:32 +05:30
2022-04-26 19:56:59 +05:30
tokio = { version = "1", features=["sync"]}
2022-09-07 10:29:35 +05:30
num_enum = "0.5.7"
mime_guess = "2.0.4"
mime = "0.3.16"
rust-embed = "6.3.0"
2022-09-12 00:23:57 +05:30
rand = "0.8.5"
2022-11-11 14:56:36 +05:30
tracing = { version = "0.1.37", features = ["log"]}
tracing-actix-web = "0.6.2"
toml = "0.5.9"
serde_yaml = "0.9.14"
uuid = { version = "1.2.2", features = ["serde"] }
2022-12-15 01:00:15 +05:30
reqwest = { version = "0.11.13", features = ["json"] }
sha2 = "0.10.6"
hmac = "0.12.1"
hex= "0.4.3"
2022-09-12 01:38:58 +05:30
[dependencies.cache-buster]
git = "https://github.com/realaravinth/cache-buster"
[dependencies.tera]
default-features = false
version = "1.15.0"
2022-09-12 01:38:58 +05:30
[dependencies.actix-auth-middleware]
branch = "v4"
features = ["actix_identity_backend"]
git = "https://github.com/realaravinth/actix-auth-middleware"
version = "0.2"
2022-03-29 18:02:32 +05:30
[dev-dependencies]
2022-09-12 01:38:58 +05:30
futures = "0.3.24"
2022-03-29 18:02:32 +05:30
mktemp = "0.4.1"
[workspace]
exclude = ["utils/cache-bust"]