-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (40 loc) · 1.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
members = ["crates/*", "prisma"]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["ProffDea <[email protected]>"]
edition = "2021"
license = "GPL-3.0-only"
[workspace.dependencies]
# chrono = "0.4.38"
vrcc-core = { path = "./crates/core" }
regex = "1.10.6"
# strum = { version = "0.26.3", features = ["derive"] }
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
[package]
name = "vrc-counter"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
# async-stream = "0.3.5"
# chrono.workspace = true
vrcc-core.workspace = true
futures = "0.3.30"
iced = { git = "https://github.com/iced-rs/iced", version = "0.13.0-dev", features = [
"advanced",
"tokio",
] }
lilt = "0.7.0"
log = "0.4.22"
regex.workspace = true
rosc = "0.10.1"
rust_decimal = "1.36.0"
rust_decimal_macros = "1.36.0"
# strum.workspace = true
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json"] }
tokio.workspace = true
tracing-unwrap = "1.0.1"