blossom/Cargo.toml

27 lines
957 B
TOML
Raw Normal View History

2023-01-15 21:43:21 +00:00
[package]
2023-06-23 00:52:55 +01:00
name = "blossom"
2023-06-23 00:36:36 +01:00
version = "1.0.0"
2023-01-15 21:43:21 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "0.5.0-rc.2", features = ["json"] }
2023-06-20 14:54:05 +01:00
# sqlx = { version = "0.5", default-features = false, features = ["macros", "offline", "migrate"] }
# rocket_db_pools = { version = "0.1.0-rc.2", features = ["sqlx_sqlite"] }
2023-01-15 21:43:21 +00:00
reqwest = { version = "0.11", features = ["json"] }
2023-06-23 14:35:43 +01:00
mastodon-async = { git = "https://sectorinf.com/cel/mastodon-async.git" }
2023-01-15 21:43:21 +00:00
tokio = { version = "1", features = ["full"] }
2023-01-16 05:18:41 +00:00
serde = { version = "1.0", features = ["derive"] }
2023-01-15 21:43:21 +00:00
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["tera"] }
2023-02-16 18:11:29 +00:00
listenbrainz = "0.7"
2023-05-30 21:48:26 +01:00
chrono = "0.4.23"
2023-06-20 16:02:12 +01:00
serde_json = "1.0.97"
time = "0.3.22"
chrono-humanize = "0.2.2"
2023-06-21 19:32:30 +01:00
markdown = "1.0.0-alpha.10"
async-trait = "0.1.68"
toml = "0.7.4"
tokio-stream = { version = "0.1.14", features = ["fs"] }
2023-06-22 21:37:10 +01:00
atom_syndication = "0.12.1"