mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-21 18:06:30 +00:00
51 lines
1.4 KiB
TOML
51 lines
1.4 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
".",
|
|
"./libs/badge",
|
|
]
|
|
|
|
[package]
|
|
name = "shiny-robots"
|
|
version = "0.1.0"
|
|
authors = ["Sam Rijs <srijs@airpost.net>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
badge = { path = "./libs/badge" }
|
|
|
|
anyhow = "1"
|
|
cadence = "1"
|
|
crates-index = { version = "2", default-features = false, features = ["git"] }
|
|
derive_more = "0.99"
|
|
dotenvy = "0.15"
|
|
either = "1.12"
|
|
font-awesome-as-a-crate = "0.3"
|
|
futures-util = { version = "0.3", default-features = false, features = ["std"] }
|
|
hyper = { version = "0.14.10", features = ["full"] }
|
|
error_reporter = "1"
|
|
indexmap = { version = "2", features = ["serde"] }
|
|
lru_time_cache = "0.11"
|
|
maud = "0.26"
|
|
once_cell = "1"
|
|
parking_lot = "0.12"
|
|
pulldown-cmark = "0.11"
|
|
relative-path = { version = "1", features = ["serde"] }
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
route-recognizer = "0.3"
|
|
rustsec = "0.29"
|
|
semver = { version = "1", features = ["serde"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_urlencoded = "0.7"
|
|
serde_with = "3"
|
|
tokio = { version = "1.24.2", features = ["rt-multi-thread", "macros", "sync", "time"] }
|
|
toml = "0.8"
|
|
tracing = "0.1.30"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[target.'cfg(any())'.dependencies]
|
|
gix = { version = "0.63", default-features = false, features = ["blocking-http-transport-reqwest-rust-tls"] }
|
|
|
|
[build-dependencies]
|
|
grass = { version = "0.13", default-features = false }
|
|
sha-1 = "0.10"
|