usdpl-rs/usdpl-back/Cargo.toml

34 lines
894 B
TOML
Raw Normal View History

2022-06-08 01:05:04 +01:00
[package]
name = "usdpl-back"
version = "0.8.0"
2022-06-08 01:05:04 +01:00
edition = "2021"
license = "GPL-3.0-only"
repository = "https://github.com/NGnius/usdpl-rs"
2022-06-13 02:30:01 +01:00
readme = "README.md"
description = "Universal Steam Deck Plugin Library back-end"
2022-06-08 01:05:04 +01:00
[features]
default = ["blocking"]
decky = ["usdpl-core/decky"]
crankshaft = ["usdpl-core/crankshaft"]
blocking = ["tokio", "tokio/rt", "tokio/rt-multi-thread"] # synchronous API for async functionality, using tokio
2022-07-24 19:45:48 +01:00
encrypt = ["usdpl-core/encrypt", "obfstr", "hex"]
2022-06-08 01:05:04 +01:00
[dependencies]
2022-07-24 19:45:48 +01:00
usdpl-core = { version = "0.6.0", path = "../usdpl-core"}
2022-06-15 21:46:13 +01:00
2022-09-13 01:45:42 +01:00
log = "0.4"
2022-06-15 21:46:13 +01:00
# HTTP web framework
warp = { version = "0.3" }
bytes = { version = "1.1" }
tokio = { version = "1", optional = true }
2022-07-24 19:45:48 +01:00
2022-09-13 01:45:42 +01:00
# this is why people don't like async
async-trait = "0.1.57"
async-recursion = "1.0.0"
2022-07-24 19:45:48 +01:00
# encryption helpers
obfstr = { version = "0.3", optional = true }
hex = { version = "0.4", optional = true }