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"] }
|
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-02-16 18:11:29 +00:00
|
|
|
mastodon-async = "1.1"
|
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"
|
2023-06-20 23:04:56 +01:00
|
|
|
time = "0.3.22"
|
|
|
|
chrono-humanize = "0.2.2"
|