-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 1.15 KB
/
Copy pathCargo.toml
File metadata and controls
25 lines (23 loc) · 1.15 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
[package]
name = "banking-jitter"
version = "0.1.0"
edition = "2024"
[lib]
name = "banking_jitter"
path = "src/lib.rs"
[dev-dependencies]
agave-banking-stage-ingress-types = { path = "../banking-stage-ingress-types", features = ["agave-unstable-api"] }
agave-logger = { path = "../logger", features = ["agave-unstable-api"] }
crossbeam-channel = "0.5.15"
solana-core = { path = "../core", features = ["agave-unstable-api"] }
solana-entry = { path = "../entry", features = ["agave-unstable-api", "dev-context-only-utils"] }
solana-keypair = "3.1.2"
solana-ledger = { path = "../ledger", features = ["agave-unstable-api", "dev-context-only-utils"] }
solana-perf = { path = "../perf", features = ["agave-unstable-api"] }
solana-poh = { path = "../poh", features = ["agave-unstable-api"] }
solana-pubkey = "4.2.0"
solana-runtime = { path = "../runtime", features = ["agave-unstable-api", "dev-context-only-utils"] }
solana-runtime-transaction = { path = "../runtime-transaction", features = ["agave-unstable-api", "dev-context-only-utils"] }
solana-system-transaction = "4.0.0"
solana-transaction = "4.1.1"
tokio = { version = "1.52.3", features = ["rt", "rt-multi-thread"] }