vcs-controller/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

2024-08-31 14:22:10 -07:00
[package]
name = "vcs-controller"
version = "2.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.5.1", features = [] }
[features]
2024-09-09 18:34:44 -07:00
tokio-debug = []
2024-08-31 14:22:10 -07:00
tokio-logging = []
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
# If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.
# DO NOT REMOVE!!
custom-protocol = [ "tauri/custom-protocol" ]
[dependencies]
2024-09-18 12:10:49 -07:00
async-channel = "2.3.1"
bincode = "1.3.3"
2024-08-31 14:22:10 -07:00
config = "0.14.0"
2024-09-18 12:10:49 -07:00
futures = "0.3.30"
2024-08-31 14:22:10 -07:00
futures-core = "0.3.30"
futures-util = { version = "0.3.30" }
2024-09-18 12:10:49 -07:00
gilrs = "0.11.0"
log = "0.4.22"
serde = { version = "1.0", features = ["derive"] }
2024-08-31 14:22:10 -07:00
serde_json = "1.0"
2024-09-18 12:10:49 -07:00
tokio = { version = "1.40", features = ["rt-multi-thread", "time", "sync"] }
tokio-tungstenite = "0.24.0"
toml = "0.8.19"
2024-08-31 14:22:10 -07:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["tracing-log"] }
tracing-appender = "0.2.3"
2024-09-18 12:10:49 -07:00
snafu = "0.8.4"
2024-08-31 14:22:10 -07:00
console-subscriber = "0.3.0"
2024-09-18 12:10:49 -07:00
tauri = { version = "1.8", features = [] }
2024-08-31 14:22:10 -07:00
lazy_static = "1.5.0"
vcs-common = { git = "https://git.nickiel.net/VCC/vcs-common.git", branch = "main" }