2022-07-30 21:33:31 +01:00
|
|
|
[package]
|
|
|
|
name = "powertools-rs"
|
2022-09-09 01:01:01 +01:00
|
|
|
version = "1.0.1"
|
2022-07-30 21:33:31 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-09-05 19:24:01 +01:00
|
|
|
usdpl-back = { version = "0.6.0", features = ["blocking"]}
|
2022-07-30 21:33:31 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
|
|
|
# logging
|
|
|
|
log = "0.4"
|
|
|
|
simplelog = "0.12"
|
2022-08-10 01:56:22 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
decky = ["usdpl-back/decky"]
|
|
|
|
crankshaft = ["usdpl-back/crankshaft"]
|
|
|
|
encrypt = ["usdpl-back/encrypt"]
|
2022-09-05 19:24:01 +01:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = false
|
|
|
|
strip = true
|
|
|
|
lto = true
|
|
|
|
codegen-units = 4
|