-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (82 loc) · 2.27 KB
/
Cargo.toml
File metadata and controls
88 lines (82 loc) · 2.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
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
80
81
82
83
84
85
86
87
88
[workspace]
members = [
"fastn-id52",
"fastn-net",
"fastn-p2p",
"fastn-p2p-client",
"examples",
]
exclude = []
resolver = "2"
[workspace.package]
authors = [
"Amit Upadhyay <upadhyay@gmail.com>",
"Arpita Jaiswal <arpita@fifthtry.com>",
"Siddhant Kumar <siddhant@fifthtry.com>",
]
edition = "2024"
description = "fastn P2P: High-Level Type-Safe P2P Communication"
license = "UPL-1.0"
repository = "https://github.com/fastn-stack/p2p"
homepage = "https://fastn.com"
rust-version = "1.89"
[workspace.dependencies]
# Core dependencies
arcstr = "1"
async-lock = "3"
async-stream = "0.3.6"
async-trait = "0.1"
base64 = "0.22"
bb8 = "0.9"
bytes = "1"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
colored = "3"
data-encoding = "2"
directories = "6"
ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
eyre = "0.6"
fastn-context = "0.1"
futures-util = { version = "0.3", default-features = false, features = ["std"] }
futures-core = "0.3.31"
http = "1"
http-body-util = "0.1"
hyper = { version = "1.5.1", features = ["server", "http1"] }
hyper-util = { version = "0.1.10", features = ["tokio"] }
indexmap = "2"
indoc = "2"
iroh = { version = "0.91", features = ["discovery-local-network"] }
keyring = "3"
once_cell = "1"
rand = "0.8.5"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
scc = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "sync"] }
fs2 = "0.4"
uuid = { version = "1.0", features = ["v4"] }
tokio-stream = "0.1"
tokio-util = "0.7"
tracing = "0.1"
tracing-subscriber = "0.3"
trait-variant = "0.1"
# Additional dependencies
atty = "0.2"
tempfile = "3"
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full", "extra-traits"] }
# Local workspace dependencies
fastn-id52 = { path = "fastn-id52" }
fastn-net = { path = "fastn-net" }
fastn-p2p = { path = "fastn-p2p" }
fastn-p2p-client = { path = "fastn-p2p-client" }
# Optional automerge support (keeping from original)
autosurgeon = "0.8"
automerge = "0.6.1"
hickory-resolver = "0.24"
[workspace.dependencies.fastn-observer]
git = "https://github.com/fastn-stack/fastn-observer"
rev = "5f64c7b"