mirror of
https://github.com/kittywitch/gw2buttplug-rs.git
synced 2026-02-09 09:19:17 -08:00
26 lines
585 B
TOML
26 lines
585 B
TOML
[package]
|
|
name = "gw2buttplug-rs"
|
|
authors = [ "kittywitch" ]
|
|
description = "DPS to buttplug"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
#opt-level = 2
|
|
#codegen-units = 1
|
|
#debug = true
|
|
panic = "abort"
|
|
#lto = "thin"
|
|
lto = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.95"
|
|
buttplug = "9.0.6"
|
|
log = "0.4.21"
|
|
nexus = { git = "https://github.com/zerthox/nexus-rs", features = ["log", "arc", "extras"] }
|
|
tokio = "1.43.0"
|
|
arcdps = { git = "https://github.com/zerthox/arcdps-rs", tag = "0.15.1" }
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"] # nexus addons are dynamic system libraries (dll)
|