2022-09-07 13:06:03 +05:30
|
|
|
[package]
|
|
|
|
name = "forms"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2022-09-08 18:00:35 +05:30
|
|
|
repository = "https://git.batsense.net/librepages/forms"
|
2022-09-07 13:06:03 +05:30
|
|
|
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"
|
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
log = "0.4.17"
|
|
|
|
pretty_env_logger = "0.4.0"
|
|
|
|
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" }
|
|
|
|
derive_builder = "0.11.2"
|
|
|
|
argon2-creds = { branch = "master", git = "https://github.com/realaravinth/argon2-creds"}
|
|
|
|
config = "0.11"
|
|
|
|
derive_more = "0.99.17"
|
|
|
|
url = { version = "2.2.2", features = ["serde"]}
|
2022-09-09 19:51:54 +05:30
|
|
|
serde_json = { version ="1", features = ["raw_value"]}
|
|
|
|
sqlx = { version = "0.6.1", features = [ "runtime-actix-rustls", "postgres", "time", "offline", "json"] }
|
2022-09-09 17:14:55 +05:30
|
|
|
clap = { vesrion = "3.2.20", features = ["derive"]}
|
2022-09-07 13:06:03 +05:30
|
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
serde_json = "1"
|
2022-09-09 19:51:54 +05:30
|
|
|
sqlx = { version = "0.6.1", features = [ "runtime-actix-rustls", "postgres", "time", "offline"] }
|
2022-09-07 13:06:03 +05:30
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
actix-rt = "2.7.0"
|
|
|
|
base64 = "0.13.0"
|