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 }
|
2023-11-14 23:16:51 +00:00
|
|
|
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"] }
|
2023-12-05 00:17:02 +00:00
|
|
|
diesel = {version = "2.1.4", features = ["postgres", "chrono", "uuid"] }
|
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"
|
2023-11-14 23:16:51 +00:00
|
|
|
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"
|
2023-12-05 00:17:02 +00:00
|
|
|
hex = "0.4.3"
|
2023-11-14 23:16:51 +00:00
|
|
|
rand = "0.8.5"
|
|
|
|
serde = "1.0.192"
|
2023-11-21 15:03:25 +00:00
|
|
|
sha2 = "0.10.8"
|
2023-11-14 23:16:51 +00:00
|
|
|
tokio = { version = "1.34.0", features = ["full"] }
|
|
|
|
tracing = "0.1.40"
|
|
|
|
url = "2.4.1"
|
2023-12-05 00:17:02 +00:00
|
|
|
uuid = { version = "1.6.1", features = ["serde"] }
|
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"
|