forgery/Cargo.toml

30 lines
801 B
TOML
Raw Normal View History

2024-11-18 16:12:07 +00:00
[package]
name = "forgery"
2024-11-18 16:12:07 +00:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
forgejo-api = "0.4"
url = "2"
anyhow = "1"
serde_json = "1"
rand = "0.8"
2025-01-02 10:54:29 +00:00
axum = { version = "0.8", features = ["form"] }
tera = "1"
lazy_static = "1"
actix-files = "0.6"
unicode-segmentation = "1"
lettre = { version = "0.11", features = ["builder", "smtp-transport", "rustls-tls"], default-features = false }
2024-12-22 20:11:57 +00:00
include_dir = "0.7"
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.66.0"
2024-11-23 10:10:44 +00:00
[profile.profiling]
inherits = "dev"
debug = true