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"
|
2022-09-10 18:31:05 +05:30
|
|
|
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"}
|
2022-12-19 10:24:51 +05:30
|
|
|
sqlx = { version = "0.6.2", features = ["runtime-actix-rustls", "postgres", "time", "offline", "json", "uuid"] }
|
2022-09-16 18:28:25 +05:30
|
|
|
clap = { version = "3.2.20", features = ["derive"]}
|
2022-12-09 14:24:02 +05:30
|
|
|
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
|
|
|
|
2024-06-11 00:02:42 +05:30
|
|
|
config = "0.14"
|
2024-06-10 22:33:59 +05:30
|
|
|
git2 = "0.18.0"
|
2021-10-29 20:22:14 +05:30
|
|
|
|
2022-04-27 10:52:24 +05:30
|
|
|
serde = { version = "1", features = ["derive", "rc"]}
|
2021-10-29 20:22:14 +05:30
|
|
|
serde_json = "1"
|
|
|
|
|
2024-06-10 22:40:20 +05:30
|
|
|
pretty_env_logger = "0.5"
|
2021-10-29 20:22:14 +05:30
|
|
|
|
|
|
|
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"
|
2021-10-30 15:30:38 +05:30
|
|
|
|
|
|
|
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"]}
|
2024-06-10 21:03:19 +05:30
|
|
|
num_enum = "0.7.0"
|
2022-09-07 10:29:35 +05:30
|
|
|
|
|
|
|
mime_guess = "2.0.4"
|
2022-09-16 17:40:49 +05:30
|
|
|
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"]}
|
2024-06-11 00:02:47 +05:30
|
|
|
tracing-actix-web = "0.7.0"
|
2024-06-10 22:40:33 +05:30
|
|
|
toml = "0.8.0"
|
2022-11-12 15:51:34 +05:30
|
|
|
serde_yaml = "0.9.14"
|
2022-11-15 20:24:13 +05:30
|
|
|
uuid = { version = "1.2.2", features = ["serde"] }
|
2024-06-10 23:02:54 +05:30
|
|
|
reqwest = { version = "0.12.0", features = ["json"] }
|
2022-12-28 04:39:13 +05:30
|
|
|
sha2 = "0.10.6"
|
|
|
|
hmac = "0.12.1"
|
|
|
|
hex= "0.4.3"
|
2022-09-12 01:38:58 +05:30
|
|
|
|
2022-09-16 17:40:49 +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"
|
2024-06-10 19:34:38 +05:30
|
|
|
mktemp = "0.5.0"
|
2022-09-16 17:40:49 +05:30
|
|
|
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
exclude = ["utils/cache-bust"]
|