36 lines
670 B
TOML
36 lines
670 B
TOML
[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]
|
|
decky_api = { version = "0.1.0", path = "./decky_api" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0" }
|
|
bytes = "1.3"
|
|
sha256 = "1.1"
|
|
|
|
# logging
|
|
log = "0.4"
|
|
simplelog = "0.12"
|
|
|
|
# web framework
|
|
actix-web = "4.2"
|
|
actix-cors = "0.6"
|
|
|
|
# proxy storage impl
|
|
ureq = { version = "2.5", features = ["json"] }
|
|
|
|
# cache storage impl
|
|
chrono = { version = "0.4" }
|
|
|
|
# cli
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
[workspace]
|
|
include = [
|
|
"decky_api"
|
|
]
|