2023-10-02 07:23:44 +02:00
|
|
|
[package]
|
2023-10-02 07:26:05 +02:00
|
|
|
name = "fedicharter"
|
2023-10-19 05:47:56 +02:00
|
|
|
version = "0.2.0"
|
|
|
|
authors = [ "alemi <me@alemi.dev>" ]
|
|
|
|
keywords = ["fediverse", "mastodon", "axum", "cli", "visualization", "graph", "api", "database"]
|
|
|
|
repository = "https://github.com/alemidev/fedicharter"
|
|
|
|
readme = "README.md"
|
2023-10-02 07:23:44 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-recursion = "1.0.5"
|
|
|
|
axum = "0.6.20"
|
2023-10-02 14:14:16 +02:00
|
|
|
chrono = "0.4.31"
|
2023-10-02 07:23:44 +02:00
|
|
|
clap = { version = "4.4.6", features = ["derive"] }
|
2023-10-18 00:37:08 +02:00
|
|
|
derive_more = "0.99.17"
|
2023-10-02 14:14:16 +02:00
|
|
|
lazy_static = "1.4.0"
|
2023-10-18 00:37:52 +02:00
|
|
|
# nodeinfo = { git = "https://codeberg.org/thefederationinfo/nodeinfo-rs.git" }
|
2023-10-02 07:23:44 +02:00
|
|
|
reqwest = { version = "0.11.20", features = ["json"] }
|
2023-10-18 00:35:18 +02:00
|
|
|
sea-orm = { version = "0.12.3", features = ["runtime-tokio-native-tls", "sqlx-sqlite", "sqlx-postgres"] }
|
2023-10-02 07:23:44 +02:00
|
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
|
|
serde_json = "1.0.107"
|
2023-10-19 04:56:26 +02:00
|
|
|
thiserror = "1.0.49"
|
2023-10-02 07:23:44 +02:00
|
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-subscriber = "0.3.17"
|
|
|
|
|