forked from holaplex/indexer-geyser-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
45 lines (38 loc) · 1.68 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
[workspace]
members = ["crates/*"]
resolver = "2"
[profile.release]
opt-level = 3
lto = "thin"
[profile.debug-lite]
inherits = "dev"
incremental = false
opt-level = 0
debug = 1
lto = "off"
[profile.release-lite]
inherits = "release"
opt-level = 2
[profile.debug-opt]
inherits = "release"
debug = 2
debug-assertions = true
incremental = true
[profile.docker]
inherits = "release"
# strip = "symbols" # Not supported in the workspace toolchain version
[patch.crates-io]
solana-transaction-status = { git = 'https://github.com/step-finance/agave', rev = "61a17cc2f3be10826f2350937a865874f5f3fb22" }
solana-sdk = { git = 'https://github.com/step-finance/agave', rev = "61a17cc2f3be10826f2350937a865874f5f3fb22" }
agave-geyser-plugin-interface = { git = 'https://github.com/step-finance/agave', rev = "61a17cc2f3be10826f2350937a865874f5f3fb22" }
solana-logger = { git = 'https://github.com/step-finance/agave', rev = "61a17cc2f3be10826f2350937a865874f5f3fb22" }
solana-program = { git = 'https://github.com/step-finance/agave', rev = "61a17cc2f3be10826f2350937a865874f5f3fb22" }
solana-metrics = { git = 'https://github.com/step-finance/agave', rev = "61a17cc2f3be10826f2350937a865874f5f3fb22" }
solana-zk-token-sdk = { git = 'https://github.com/step-finance/agave', rev = "61a17cc2f3be10826f2350937a865874f5f3fb22" }
# solana-transaction-status = { path = "../agave/transaction-status" }
# solana-sdk = { path = "../agave/sdk" }
# agave-geyser-plugin-interface = { path = "../agave/geyser-plugin-interface" }
# solana-logger = { path = "../agave/logger" }
# solana-program = { path = "../agave/sdk/program" }
# solana-metrics = { path = "../agave/metrics" }
# solana-zk-token-sdk = { path = "../agave/zk-token-sdk" }