39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "formies_be"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-web = "4.0"
|
|
rusqlite = { version = "0.29", features = ["bundled", "chrono"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
actix-files = "0.6"
|
|
actix-cors = "0.6"
|
|
env_logger = "0.10"
|
|
log = "0.4"
|
|
futures = "0.3"
|
|
bcrypt = "0.13"
|
|
anyhow = "1.0"
|
|
dotenv = "0.15.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
regex = "1"
|
|
url = "2"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
scraper = "0.18"
|
|
lettre = { version = "0.10", features = ["builder", "tokio1-native-tls"] }
|
|
ureq = { version = "2.9", features = ["json"] }
|
|
# Production dependencies
|
|
actix_route_rate_limiter = "0.2.2"
|
|
actix-rt = "2.0"
|
|
actix-http = "3.0"
|
|
config = "0.13"
|
|
sentry = { version = "0.37", features = ["log"] }
|
|
validator = { version = "0.16", features = ["derive"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tracing-actix-web = "0.7"
|
|
tracing-log = "0.2"
|
|
tracing-appender = "0.2"
|
|
tracing-bunyan-formatter = "0.3" |