27 lines
601 B
TOML
27 lines
601 B
TOML
[package]
|
|
name = "kaylon" # TODO replace with plugin name (also in build.sh)
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
usdpl-back = { version = "0.7.0", features = ["decky"], path = "../../usdpl-rs/usdpl-back" }
|
|
|
|
# async
|
|
tokio = { version = "*", features = ["sync", "time"] }
|
|
async-trait = "0.1.57"
|
|
|
|
# json
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# logging
|
|
log = "0.4"
|
|
simplelog = "0.12"
|
|
|
|
[profile.release]
|
|
debug = false
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 4
|