-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
35 lines (31 loc) · 1.15 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
[package]
name = "helium-anchor-gen"
version = "0.1.0"
edition = "2021"
authors = ["Louis Thiery <[email protected]>"]
license = "Apache-2.0"
[lib]
path = "src/lib.rs"
[workspace]
members = [
"programs/*"
]
[workspace.dependencies]
anchor-lang= "=0.29"
anchor-gen = { git = "https://github.com/ChewingGlass/anchor-gen.git", branch = "master" }
[dependencies]
anchor-gen = { workspace = true }
anchor-lang = { workspace = true }
circuit-breaker = { path = "programs/circuit-breaker" }
data-credits = { path = "programs/data-credits" }
fanout = { path = "programs/fanout" }
helium-entity-manager = { path = "programs/helium-entity-manager" }
helium-sub-daos = { path = "programs/helium-sub-daos" }
hexboosting = { path = "programs/hexboosting" }
lazy-distributor = { path = "programs/lazy-distributor" }
lazy-transactions = { path = "programs/lazy-transactions" }
mobile-entity-manager = { path = "programs/mobile-entity-manager" }
price-oracle = { path = "programs/price-oracle" }
rewards-oracle = { path = "programs/rewards-oracle" }
treasury-management = { path = "programs/treasury-management" }
voter-stake-registry = { path = "programs/voter-stake-registry" }