-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 886 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (27 loc) · 886 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
[package]
name = "iroh-tickets"
version = "0.2.0"
edition = "2024"
readme = "README.md"
description = "tickets as signaling for iroh"
license = "MIT OR Apache-2.0"
authors = ["dignifiedquire <me@dignifiedquire.com>", "n0 team"]
repository = "https://github.com/n0-computer/iroh-tickets"
keywords = ["quic", "networking", "holepunching", "p2p"]
# Sadly this also needs to be updated in .github/workflows/ci.yml
rust-version = "1.85"
[lints.rust]
missing_debug_implementations = "warn"
[lints.clippy]
unused-async = "warn"
[dependencies]
data-encoding = "2.9.0"
derive_more = { version = "2.1.1", features = ["display"] }
iroh-base = { version = "0.95", features = ["key"] }
n0-error = "0.1"
postcard = { version = "1.1.3", features = ["use-std"] }
serde = { version = "1.0.228", features = ["derive"] }
[dev-dependencies]
rand = "0.9.2"
rand_chacha = "0.9.0"
serde_json = "1.0.145"