2018-01-26 03:37:46 +00:00
|
|
|
[package]
|
|
|
|
name = "shiny-robots"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Sam Rijs <srijs@airpost.net>"]
|
2021-10-22 18:36:39 +00:00
|
|
|
edition = "2021"
|
2018-01-26 03:37:46 +00:00
|
|
|
|
2020-09-28 22:18:06 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
".",
|
|
|
|
"./libs/badge",
|
|
|
|
]
|
|
|
|
|
2018-01-26 03:37:46 +00:00
|
|
|
[dependencies]
|
2020-09-28 22:28:45 +00:00
|
|
|
badge = { path = "./libs/badge" }
|
|
|
|
|
2020-09-28 23:28:58 +00:00
|
|
|
anyhow = "1"
|
2022-04-22 20:06:03 +00:00
|
|
|
cadence = "0.29"
|
2023-07-29 19:37:22 +00:00
|
|
|
crates-index = { version = "2", default-features = false, features = ["git-https"] }
|
2020-09-28 23:01:14 +00:00
|
|
|
derive_more = "0.99"
|
2022-10-28 18:45:31 +00:00
|
|
|
font-awesome-as-a-crate = "0.3"
|
2022-01-16 16:48:08 +00:00
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["std"] }
|
2021-11-25 09:35:28 +00:00
|
|
|
hyper = { version = "0.14.10", features = ["full"] }
|
2023-07-29 19:37:22 +00:00
|
|
|
indexmap = { version = "2", features = ["serde"] }
|
2020-10-05 11:47:24 +00:00
|
|
|
lru_time_cache = "0.11.1"
|
2023-07-29 19:37:22 +00:00
|
|
|
maud = "0.25"
|
2020-12-26 14:30:17 +00:00
|
|
|
once_cell = "1"
|
2022-01-16 16:27:14 +00:00
|
|
|
pulldown-cmark = "0.9"
|
2020-09-30 12:58:18 +00:00
|
|
|
relative-path = { version = "1.3", features = ["serde"] }
|
2022-01-16 16:27:14 +00:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
2020-12-26 14:30:17 +00:00
|
|
|
route-recognizer = "0.3"
|
2023-07-29 19:37:22 +00:00
|
|
|
rustsec = "0.27"
|
2021-05-27 14:02:02 +00:00
|
|
|
semver = { version = "1.0", features = ["serde"] }
|
2020-09-28 22:53:20 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2020-09-28 23:01:14 +00:00
|
|
|
serde_json = "1"
|
2022-01-24 15:18:19 +00:00
|
|
|
serde_urlencoded = "0.7"
|
2020-09-28 22:56:02 +00:00
|
|
|
slog = "2"
|
2020-10-04 15:03:52 +00:00
|
|
|
slog-async = "2"
|
|
|
|
slog-term = "2"
|
2023-02-04 01:05:43 +00:00
|
|
|
tokio = { version = "1.24.2", features = ["rt-multi-thread", "macros", "sync", "time"] }
|
2023-01-31 19:37:42 +00:00
|
|
|
toml = "0.7"
|
2018-02-14 00:48:17 +00:00
|
|
|
|
2018-01-29 07:34:22 +00:00
|
|
|
[build-dependencies]
|
2020-09-28 22:28:45 +00:00
|
|
|
sass-rs = "0.2"
|
2021-12-29 07:30:53 +00:00
|
|
|
sha-1 = "0.10"
|