java/updater/Cargo.toml

18 lines
522 B
TOML
Raw Normal View History

2021-12-17 00:17:40 -05:00
[package]
name = "updater"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-11-29 02:21:44 -05:00
async-std = { version = "1.12.0", features = ["attributes"] }
2021-12-23 13:11:49 -05:00
color-eyre = "0.5.11"
custom_debug = "0.5.1"
2022-11-29 02:21:44 -05:00
isahc = "1.7.2"
2021-12-17 00:17:40 -05:00
serde = { version = "1.0.132", features = ["derive"] }
serde_json = "1.0.73"
tracing = { version = "0.1.37", features = ["log"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
2022-11-29 02:21:44 -05:00
urlencoding = "2.1.2"