mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 14:01:08 +00:00
35 lines
929 B
TOML
35 lines
929 B
TOML
[package]
|
|
name = "fediwiki"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
activitypub_federation = { version = "0.5.0-beta.6", features = ["axum", "diesel"], default-features = false }
|
|
anyhow = "1.0.75"
|
|
async-trait = "0.1.74"
|
|
axum = "0.6.20"
|
|
axum-macros = "0.3.8"
|
|
bcrypt = "0.15.0"
|
|
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"
|
|
jsonwebtoken = "9.2.0"
|
|
rand = "0.8.5"
|
|
serde = "1.0.192"
|
|
serde_json = "1.0.108"
|
|
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"
|