magnetar/Cargo.toml

30 lines
608 B
TOML
Raw Normal View History

2023-02-14 00:59:15 +00:00
[package]
name = "magnetar"
2023-02-18 15:23:56 +00:00
description = "An exploratory ActivityPub project"
2023-02-14 00:59:15 +00:00
version = "0.1.0"
2023-02-18 14:28:09 +00:00
license = "APGL"
2023-02-14 00:59:15 +00:00
edition = "2021"
2023-02-17 23:42:50 +00:00
[workspace]
members = [
".",
"core"
2023-02-18 14:28:09 +00:00
]
[dependencies]
magnetar_core = { path = "./core", version = "0.1" }
anyhow = "1.0"
dotenvy = "0.15"
axum = "0.6"
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1.24", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.3", features = ["cors", "trace"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing = "0.1"
serde = { version = "1.0", features = ["derive"] }