ForgeFlux/Cargo.toml
Aravinth Manivannan 36f1c1e0f4
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat: test with mocks
2024-05-06 19:42:40 +05:30

37 lines
990 B
TOML

[package]
name = "forgeflux"
version = "0.1.0"
edition = "2021"
[workspace]
exclude = ["utils/db-migrations"] #, "utils/cache-bust"]
memebers = ["."]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.5.1"
async-trait = "0.1.80"
chrono = "0.4.38"
config = "0.14.0"
derive_more = "0.99.17"
lazy_static = "1.4.0"
log = "0.4.21"
pretty_env_logger = "0.5.0"
rand = "0.8.5"
reqwest = { version = "0.12.4", features = ["json"] }
rust-embed = { version = "8.3.0", features = ["include-exclude"] }
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
sqlx = { version = "0.7.4", features = ["runtime-tokio-rustls", "postgres", "time"] }
tera = "1.19.1"
tracing = { version = "0.1.40", features = ["log"] }
tracing-actix-web = "0.7.10"
url = { version = "2.5.0", features = ["serde"] }
mockall = "0.12"
[dev-dependencies]
actix-rt= "2.9"
mockall = { version = "0.12", features = ["nightly"] }