2022-10-05 16:08:36 +05:30
|
|
|
[package]
|
|
|
|
name = "conductor"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
repository = "https://git.batsense.net/librepages/conductor"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "AGPLv3 or later version"
|
|
|
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-web = "4"
|
2024-06-10 13:00:49 +05:30
|
|
|
actix-web-prom = "0.8.0"
|
2022-10-05 16:08:36 +05:30
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
log = "0.4.17"
|
2024-06-10 14:30:56 +05:30
|
|
|
pretty_env_logger = "0.5.0"
|
2022-10-05 16:08:36 +05:30
|
|
|
serde = { version = "1", features=["derive"]}
|
|
|
|
actix-web-codegen-const-routes = { version = "0.1.0", tag = "0.1.0", git = "https://github.com/realaravinth/actix-web-codegen-const-routes" }
|
2022-12-09 18:02:48 +05:30
|
|
|
libconfig = { version = "0.1.0", git = "https://git.batsense.net/librepages/libconfig" }
|
2024-06-10 15:00:34 +05:30
|
|
|
derive_builder = "0.20.0"
|
2024-06-10 14:30:48 +05:30
|
|
|
config = "0.14"
|
2024-08-07 23:00:43 +05:30
|
|
|
derive_more = "1.0.0"
|
2022-10-05 16:08:36 +05:30
|
|
|
url = { version = "2.2.2", features = ["serde"]}
|
|
|
|
serde_json = { version ="1", features = ["raw_value"]}
|
|
|
|
clap = { vesrion = "3.2.20", features = ["derive"]}
|
2022-12-07 13:02:09 +05:30
|
|
|
actix-web-httpauth = "0.8.0"
|
2022-12-11 23:43:13 +05:30
|
|
|
mime_guess = "2.0.4"
|
2024-06-10 15:00:47 +05:30
|
|
|
rust-embed = "8.0.0"
|
2022-10-05 16:08:36 +05:30
|
|
|
|
2022-10-05 16:58:49 +05:30
|
|
|
[dependencies.libconductor]
|
|
|
|
path = "./env/libconductor"
|
|
|
|
|
|
|
|
[dependencies.dummy_conductor]
|
|
|
|
path = "./env/dummy_conductor"
|
2022-10-05 16:08:36 +05:30
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
serde_json = "1"
|
|
|
|
sqlx = { version = "0.6.1", features = [ "runtime-actix-rustls", "postgres", "time", "offline"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
actix-rt = "2.7.0"
|
2024-06-10 19:30:47 +05:30
|
|
|
base64 = "0.22.0"
|