2023-11-27 20:52:02 +00:00
|
|
|
[package]
|
|
|
|
name = "linstrom"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-11-27 21:48:16 +00:00
|
|
|
authors = ["mStar"]
|
|
|
|
license = "EUPL-1.2"
|
|
|
|
description = "An ActivityPub enabled social media server focused on helping with user safety"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://gitlab.com/mstarongitlab/linstrom"
|
2023-11-27 20:52:02 +00:00
|
|
|
|
2023-11-28 06:34:25 +00:00
|
|
|
exclude = ["/.vscode", "/FeatureTargets.md"]
|
2023-11-27 20:52:02 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-06 21:16:37 +00:00
|
|
|
activitypub_federation = "0.5.0"
|
2023-11-27 20:52:02 +00:00
|
|
|
axum = "0.7.1"
|
2024-01-06 21:16:37 +00:00
|
|
|
diesel = { version = "2.1.4", features = ["sqlite", "postgres", "r2d2", "chrono"] }
|
2023-11-27 20:52:02 +00:00
|
|
|
tokio = { version = "1.34.0", features = ["full"]}
|
2023-12-31 12:04:52 +00:00
|
|
|
build_html = "2.4.0"
|
|
|
|
serde = "1.0.193"
|
|
|
|
url = "2.5.0"
|
|
|
|
chrono = "0.4.31"
|
|
|
|
tracing = "0.1.40"
|
|
|
|
rand = "0.8.5"
|
|
|
|
anyhow = "1.0.77"
|
|
|
|
async-trait = "0.1.75"
|
|
|
|
dotenvy = "0.15.7"
|
|
|
|
clap = { version = "4.4.12", features = ["derive"] }
|
|
|
|
toml = "0.8.8"
|
|
|
|
serde_derive = "1.0.193"
|
|
|
|
sysinfo = "0.30.3"
|
|
|
|
diesel_migrations = "2.1.0"
|
2024-01-06 21:16:37 +00:00
|
|
|
serde_json = "1.0.111"
|