upub/Cargo.toml

28 lines
983 B
TOML
Raw Normal View History

[package]
2024-03-20 08:16:50 +01:00
name = "upub"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-09 17:07:55 +01:00
axum = "0.7.3"
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.5.3", features = ["derive"] }
paste = "1.0.14"
reqwest = { version = "0.11.26", features = ["json"] }
sea-orm = { version = "0.12.14", features = ["macros", "sqlx-sqlite", "runtime-tokio-rustls"] }
sea-orm-migration = "0.12.15"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
2024-03-16 20:09:06 +01:00
thiserror = "1.0.58"
2024-02-09 17:07:55 +01:00
tokio = { version = "1.35.1", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
2024-03-20 07:55:03 +01:00
uuid = { version = "1.8.0", features = ["v4"] }
2024-03-22 00:17:52 +01:00
jrd = "0.1"
# nodeinfo = "0.0.2" # the version on crates.io doesn't re-export necessary types to build the struct!!!
nodeinfo = { git = "https://codeberg.org/thefederationinfo/nodeinfo-rs", rev = "e865094804" }
2024-03-24 23:55:48 +01:00
rand = "0.8.5"
sha256 = "1.5.0"