2023-01-15 21:43:21 +00:00
|
|
|
[package]
|
|
|
|
name = "site"
|
|
|
|
version = "0.1.0"
|
|
|
|
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"] }
|
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
2023-01-17 02:31:48 +00:00
|
|
|
mastodon-async = "1.0"
|
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-01-16 05:18:41 +00:00
|
|
|
listenbrainz = { git = "https://sectorinf.com/cel/listenbrainz-rs.git" }
|