usdpl-rs/usdpl-core/Cargo.toml

23 lines
492 B
TOML
Raw Normal View History

2022-06-08 01:05:04 +01:00
[package]
name = "usdpl-core"
2023-01-11 01:51:13 +00:00
version = "0.9.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 core"
2022-06-08 01:05:04 +01:00
[features]
default = []
decky = []
crankshaft = []
2022-07-24 19:45:48 +01:00
encrypt = ["aes-gcm-siv"]
2023-01-11 01:51:13 +00:00
translate = []
2022-06-08 01:05:04 +01:00
[dependencies]
2022-06-15 21:46:13 +01:00
base64 = "0.13"
2022-07-24 19:45:48 +01:00
aes-gcm-siv = { version = "0.10", optional = true, default-features = false, features = ["alloc", "aes"] }
[dev-dependencies]
hex-literal = "0.3.4"