mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 12:21:09 +00:00
32 lines
935 B
TOML
32 lines
935 B
TOML
[package]
|
|
name = "fediwiki"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
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"
|
|
chrono = { version = "0.4.31", features = ["serde"] }
|
|
diesel = {version = "2.1.4", features = ["postgres", "chrono", "uuid"] }
|
|
diesel-derive-newtype = "2.1.0"
|
|
diesel_migrations = "2.1.0"
|
|
diffy = "0.3.0"
|
|
enum_delegate = "0.2.0"
|
|
env_logger = { version = "0.10.1", default-features = false }
|
|
futures = "0.3.29"
|
|
hex = "0.4.3"
|
|
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"
|
|
uuid = { version = "1.6.1", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
once_cell = "1.18.0"
|
|
pretty_assertions = "1.4.0"
|
|
reqwest = "0.11.22"
|