forgery/Cargo.toml

18 lines
438 B
TOML
Raw Normal View History

2024-11-18 16:12:07 +00:00
[package]
name = "forgejo-antispam"
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.0.93"
bayespam = "1.1.0"
2024-11-18 16:27:06 +00:00
serde_json = "1.0.133"
rand = "0.8.5"