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 15:26:14 +00:00
|
|
|
license = "AGPL-3.0-only"
|
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"] }
|