-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (72 loc) · 1.97 KB
/
Cargo.toml
File metadata and controls
79 lines (72 loc) · 1.97 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[workspace]
members = ["crates/*"]
resolver = "3"
[package]
name = "the-man"
version = "0.1.0"
edition = "2024"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[features]
[workspace.dependencies]
base64 = "0.22.1"
bytes = { version = "1.10.1", features = ["serde"] }
chrono = { version = "0.4.41", features = ["serde"] }
ciborium = "0.2.2"
ed25519 = { version = "2.2.3", features = ["serde", "serde_bytes"] }
futures-util = "0.3.31"
iroh = "0.91"
iroh-blobs = { version = "0.93", features = [] }
#iroh-gossip = { version = "0.90", features = ["rpc"] }
media-man = { path = "crates/media-man", features = [
"codec-opus",
"codec-raw",
"codec-hevc",
] }
rand = "0.8"
thiserror = "2.0.11"
tokio = { version = "1.46.1", features = [
"bytes",
"fs",
"io-std",
"io-util",
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"tracing"
] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
eframe = { version = "0.32", default-features = false, features = ["wayland", "glow", "default_fonts"]}
anyhow = "1"
egui_tiles = "0.13.0"
zbus = {version = "5.9.0", features = ["tokio"]}
ashpd = {version = "0.11.0", features = ["tokio"]}
pipewire = { version = "0.8.0" }
bincode = { version = "2.0.1", features = ["serde"] }
rsmpeg = { version = "0.16.1" }
[dependencies]
base64 = { workspace = true }
tokio = { workspace = true }
iroh = { workspace = true }
iroh-blobs = { workspace = true }
#iroh-gossip = { workspace = true }
media-man = { workspace = true }
chrono = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
eframe = { workspace = true }
egui_tiles = { workspace = true }
ed25519 = { workspace = true }
futures-util = { workspace = true }
ciborium = { workspace = true }
bytes = { workspace = true }
anyhow = { workspace = true }
rand = { workspace = true }
bincode = { workspace = true }
serde = { version = "1.0.217", features = ["derive"] }
platform = { path = "crates/platform" }