-
Notifications
You must be signed in to change notification settings - Fork 50
/
Cargo.toml
38 lines (36 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
[workspace]
members = [
"programs/*",
"utils/proposal",
"utils/nft-proxy",
]
exclude = [
"deps/metaplex-program-library/bubblegum/program",
"deps/metaplex-program-library/token-metadata/program",
"utils/ecc-sig-verifier",
"utils/migration-tx-executor",
"utils/vehnt",
"utils/hpl-utils",
"utils/bulk-claim-rewards",
"utils/generate-test-gateway-txn",
"utils/active-hotspot-oracle",
"utils/backfill-onboarding-fees",
"utils/standardize-hotspot-metadata",
]
[workspace.dependencies]
anchor-lang = { version = "0.28.0", features = ["init-if-needed"] }
anchor-spl = { version = "0.28.0", features = ["mint", "token"] }
mpl-token-metadata = { version = "3.2.0" }
account-compression-cpi = { rev = "a499196", git = "https://github.com/helium/account-compression-anchor-gen.git", features = ["cpi"]}
bubblegum-cpi = { rev = "a499196", git = "https://github.com/helium/account-compression-anchor-gen.git", features = ["cpi"]}
solana-security-txt = "1.1.1"
default-env = "0.1.1"
shared-utils = { path = "./utils/shared-utils" }
circuit-breaker = { path = "./programs/circuit-breaker", features = ["cpi"] }
helium-sub-daos = { path = "./programs/helium-sub-daos", features = ["cpi"] }
helium-entity-manager = { path = "./programs/helium-entity-manager", features = ["cpi"] }
lazy-distributor = { path = "./programs/lazy-distributor", features = ["cpi"] }
mobile-entity-manager = { path = "./programs/mobile-entity-manager", features = ["cpi"] }
price-oracle = { path = "./programs/price-oracle", features = ["cpi"] }
no-emit = { path = "./programs/no-emit", features = ["cpi"] }
time = "0.3.36"