-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.27 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (46 loc) · 1.27 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
[workspace]
resolver = "2"
members = [
"crates/triptorrent-cli",
"crates/triptorrent-core",
"crates/triptorrent-desktop",
"crates/triptorrent-interop",
"crates/triptorrent-net",
"crates/triptorrent-node",
"crates/triptorrent-node-api",
"crates/triptorrent-overlay",
"crates/triptorrent-protocol",
"crates/triptorrent-relay",
"crates/triptorrent-swarm",
]
exclude = ["fuzz"]
[workspace.package]
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/LironCareto/triptorrent"
[workspace.dependencies]
anyhow = "1.0"
blake3 = "1.8"
clap = { version = "4.5", features = ["derive"] }
eframe = { version = "0.36.2", default-features = false, features = ["default_fonts", "glow", "wayland", "x11"] }
getrandom = "0.3"
hex = "0.4"
postcard = { version = "1.1", features = ["alloc"] }
proptest = "1"
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha1 = "0.10"
sha2 = "0.10"
snow = "0.10"
tempfile = "3.22"
thiserror = "2.0"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
unicode-normalization = "0.1"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"