-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
65 lines (59 loc) · 1.58 KB
/
Cargo.toml
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
[workspace]
members = [
"crates/*"
]
resolver = "2"
[workspace.package]
authors = ["openfarcaster", "Hamza Hamud <[email protected]>"]
name = "teleport"
license = "MIT"
version = "0.1.0"
edition = "2021"
readme = "./README.md"
homepage = "https://github.com/OpenFarcaster/teleport"
repository = "https://github.com/OpenFarcaster/teleport"
[workspace.dependencies]
blake3 = { version = "1.4.1", features = ["digest", "traits-preview"] }
libp2p = { version = "0.52.0", features = [
"gossipsub",
"macros",
"tcp",
"tokio",
"noise",
"ed25519",
"identify",
"ping",
] }
prost = "0.11.9"
serde = { version = "1.0.183", features = ["derive"] }
sled = "0.34.7"
thiserror = "1.0.44"
tonic = "0.9.2"
libp2p-mplex = "0.40.0"
env_logger = "0.10.0"
tokio = { version = "1.32.0", features = ["full"] }
void = "1.0.2"
sqlx = { version = "0.7.2", features = ["sqlite", "runtime-tokio"] }
hex = "0.4.3"
serde_json = "1.0.105"
cron = "0.12.0"
chrono = "0.4.26"
clap = { version = "4.4.4", features = ["derive", "env"] }
tokio-stream = "0.1.14"
log = "0.4.20"
secp256k1 = { version = "0.28.0", features = ["recovery"] }
ethers = { version = "2.0.11", features = ["ws"] }
once_cell = "1.18.0"
ed25519-dalek = "2.1.0"
rand = "0.8.4"
uuid = { version = "1.0", features = ["v4"] }
futures-util = { version = "0.3.17" }
alloy-dyn-abi = { version = "0.5.3", features = ["eip712"] }
alloy-primitives = { version = "0.5.3" }
futures = { version = "0.3.17" }
figment = { version = "0.10.12", features = ["toml", "env"] }
dotenv = { version = "0.15.0" }
[profile.release]
codegen-units = 1
lto = true
strip = true