ibis/Cargo.toml

31 lines
862 B
TOML
Raw Normal View History

2023-11-14 22:41:58 +00:00
[package]
name = "fediwiki"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-12-04 14:10:07 +00:00
activitypub_federation = { git = "https://github.com/LemmyNet/activitypub-federation-rust.git", branch = "diesel-feature", features = ["axum", "diesel"], default-features = false }
anyhow = "1.0.75"
async-trait = "0.1.74"
axum = "0.6.20"
axum-macros = "0.3.8"
2023-11-16 11:48:57 +00:00
chrono = { version = "0.4.31", features = ["serde"] }
diesel = {version = "2.1.4", features = ["postgres", "chrono"] }
2023-11-29 15:41:29 +00:00
diesel-derive-newtype = "2.1.0"
2023-12-01 11:11:19 +00:00
diesel_migrations = "2.1.0"
2023-11-20 15:48:29 +00:00
diffy = "0.3.0"
enum_delegate = "0.2.0"
env_logger = { version = "0.10.1", default-features = false }
2023-11-16 15:40:43 +00:00
futures = "0.3.29"
rand = "0.8.5"
serde = "1.0.192"
sha2 = "0.10.8"
tokio = { version = "1.34.0", features = ["full"] }
tracing = "0.1.40"
url = "2.4.1"
2023-11-15 12:05:07 +00:00
[dev-dependencies]
2023-11-16 11:48:57 +00:00
once_cell = "1.18.0"
2023-12-01 13:04:51 +00:00
pretty_assertions = "1.4.0"
2023-11-15 12:05:07 +00:00
reqwest = "0.11.22"