anime-launcher-sdk/Cargo.toml

29 lines
792 B
TOML
Raw Normal View History

2022-11-11 16:29:16 +00:00
[package]
name = "anime-launcher-sdk"
version = "0.1.0"
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
license = "GPL-3.0"
readme = "README.md"
edition = "2021"
[dependencies]
anime-game-core = { path = "anime-game-core", features = ["genshin", "all", "static"] }
anyhow = "1.0"
dirs = "4.0.0"
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
wincompatlib = { version = "0.1.2", features = ["dxvk"], optional = true }
lazy_static = { version = "1.4.0", optional = true }
2022-11-11 16:29:16 +00:00
[features]
states = []
config = ["dep:serde", "dep:serde_json"]
components = ["dep:wincompatlib", "dep:lazy_static"]
2022-11-11 16:29:16 +00:00
runner = []
fps-unlocker = []
default = ["all"]
all = ["states", "config", "components", "runner", "fps-unlocker"]