-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (36 loc) · 934 Bytes
/
Copy pathCargo.toml
File metadata and controls
45 lines (36 loc) · 934 Bytes
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
[workspace]
resolver = "2"
members = [
'pinhole-protocol',
'pinhole-client',
'pinhole-framework',
'todomvc-example'
]
[workspace.dependencies]
# Workspace crates
pinhole-protocol = { path = "pinhole-protocol" }
pinhole = { path = "pinhole-framework" }
# Async runtime
tokio = { version = "1.48", features = ["io-util", "net", "macros", "rt-multi-thread", "time", "sync"] }
tokio-stream = { version = "0.1", features = ["sync"] }
async-trait = "0.1"
# TLS
tokio-native-tls = "0.3"
native-tls = "0.2"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11"
serde_json = "1.0"
# Logging and tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# GUI
iced = { version = "0.13", features = ["tokio", "advanced"] }
# Utilities
futures = "0.3"
directories = "5.0"
rustc-hash = "2.1"
maplit = "*"
sha2 = "0.10"
# Dev dependencies
tempfile = "3.8"