-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (50 loc) · 1.23 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace]
members = ["packages/*"]
resolver = "2"
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1
panic = "abort"
[workspace.package]
authors = ["langyo <[email protected]>"]
publish = false
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
anyhow = "^1"
async-trait = "^0.1"
derive_more = "*"
once_cell = "^1"
base64 = "^0.22"
bytes = "^1"
chrono = { version = "^0.4", features = ["serde", "unstable-locales"] }
futures = "^0.3"
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
postcard = { version = "^1", features = ["alloc"] }
strum = { version = "^0.26", features = ["derive"] }
uuid = { version = "^1", features = [
'v4',
'fast-rng',
'macro-diagnostics',
'serde',
] }
log = "^0.4"
env_logger = "^0.11"
tracing = "^0.1"
tracing-subscriber = "^0.3"
tracing-appender = "^0.2"
windows = { version = "^0.54", features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_System_LibraryLoader",
"Win32_System_SystemServices",
"Win32_Graphics_Gdi",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_UI_WindowsAndMessaging",
] }
tokio = { version = "^1", features = ["full"] }