2022-12-07 22:07:25 +00:00
|
|
|
[package]
|
|
|
|
name = "not-decky-store"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-08 02:30:10 +00:00
|
|
|
decky_api = { version = "0.1.0", path = "./decky_api" }
|
2022-12-10 02:10:14 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0" }
|
|
|
|
bytes = "1.3"
|
|
|
|
sha256 = "1.1"
|
|
|
|
|
|
|
|
# logging
|
|
|
|
log = "0.4"
|
|
|
|
simplelog = "0.12"
|
2022-12-08 02:30:10 +00:00
|
|
|
|
|
|
|
# web framework
|
2023-07-01 00:21:24 +01:00
|
|
|
actix-web = { version = "4.2", default-features = false, features = [ "macros", "compress-brotli", "compress-zstd" ] }
|
2022-12-08 02:30:10 +00:00
|
|
|
actix-cors = "0.6"
|
|
|
|
|
2022-12-10 02:10:14 +00:00
|
|
|
# proxy storage impl
|
2023-07-01 00:21:24 +01:00
|
|
|
ureq = { version = "2.7", default-features = false, features = ["json", "native-tls", "brotli", "gzip"] }
|
|
|
|
native-tls = "0.2" # ring only compiles on x86 and arm for some dumb reason, so use this instead
|
2022-12-10 02:10:14 +00:00
|
|
|
|
|
|
|
# cache storage impl
|
|
|
|
chrono = { version = "0.4" }
|
|
|
|
|
|
|
|
# cli
|
|
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
|
2022-12-08 02:30:10 +00:00
|
|
|
[workspace]
|
|
|
|
include = [
|
|
|
|
"decky_api"
|
|
|
|
]
|