-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (59 loc) · 2.21 KB
/
Copy pathCargo.toml
File metadata and controls
69 lines (59 loc) · 2.21 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
[package]
name = "celestia-fibre"
version.workspace = true
edition.workspace = true
license = "Apache-2.0"
description = "Client library for the Celestia Fibre data availability protocol"
authors = ["Celestia <contact@celestia.org>"]
homepage = "https://www.celestia.org"
repository = "https://github.com/celestiaorg/lumina"
rust-version = "1.88"
[dependencies]
celestia-grpc.workspace = true
celestia-proto = { workspace = true, features = ["tonic"] }
celestia-types.workspace = true
rsema1d.workspace = true
# Crypto
k256 = { workspace = true, features = ["ecdsa"] }
ed25519-dalek = { version = "2.1", features = ["digest"] }
sha2 = "0.10.8"
rand.workspace = true
chacha8rand = "0.1.2"
# Async runtime
tokio = { workspace = true, features = ["sync", "macros"] }
tokio-util.workspace = true
futures.workspace = true
lumina-utils = { workspace = true, features = ["executor"] }
# gRPC
der = { version = "0.7.2", features = ["derive"] }
hyper = { version = "1.8", features = ["client", "http2"] }
hyper-util = { workspace = true, features = ["tokio"] }
http.workspace = true
tokio-rustls = { version = "0.26.1", default-features = false, features = ["logging", "ring"] }
tonic = { workspace = true, features = ["codegen"] }
tower = { version = "0.5.2", features = ["util"] }
x509-parser = "0.17"
prost.workspace = true
tendermint-proto.workspace = true
# Error handling and utilities
thiserror.workspace = true
tracing.workspace = true
hex.workspace = true
async-trait.workspace = true
bech32 = "0.11"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { workspace = true, features = ["net"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
gloo-net = { version = "0.6", default-features = false, features = ["websocket"] }
ring = { version = "0.17.14", features = ["wasm32_unknown_unknown_js"] }
rustls-pki-types = { workspace = true, features = ["web"] }
send_wrapper.workspace = true
[dev-dependencies]
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "test-util"] }
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "fibre_bench"
harness = false