-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) · 1.6 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (50 loc) · 1.6 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
[workspace]
members = ["crates/bulkmail", "crates/mempooloracle"]
exclude = ["third_party/grandine"]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Tyler Smith <mail@tcry.pt>"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
alloy = { version = "1.7.3", default-features = false, features = [
"std",
"provider-ws",
"rpc-types",
"signer-local",
"k256",
] }
alloy-node-bindings = "1.7.3"
async-trait = "0.1.89"
crossterm = "0.29.0"
ethereum-types = "0.16.0"
futures = "0.3.32"
log = "0.4.29"
mockall = "0.14.0"
mempooloracle = { path = "crates/mempooloracle", version = "0.1.0" }
parking_lot = "0.12.1"
rand = "0.10.0"
ratatui = "0.29.0"
reth-ethereum = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.11.3", default-features = false }
reth-network-peers = { git = "https://github.com/paradigmxyz/reth.git", tag = "v1.11.3", default-features = false }
rustls = { version = "0.23.36", default-features = false, features = ["std", "ring"] }
secp256k1 = "0.31.1"
serde = { version = "1.0.228", features = ["derive"] }
simple_logger = "5.2.0"
solana-client = { version = "2.2", default-features = false }
solana-sdk = { version = "2.2", default-features = false, features = ["full"] }
solana-transaction-status = { version = "2.2", default-features = false }
thiserror = "2.0.18"
tokio = { version = "1.49.0", features = ["rt", "rt-multi-thread", "sync", "time", "macros"] }
tracing = "0.1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.ci]
inherits = "dev"
debug = false
incremental = false
debug-assertions = true
overflow-checks = true