-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: Semen Medvedev <[email protected]>
- Loading branch information
1 parent
96e766b
commit 9b6abcb
Showing
5 changed files
with
29 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "solana-program-library"] | ||
path = solana-program-library | ||
url = https://github.com/solana-labs/solana-program-library.git | ||
branch = master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[workspace] | ||
members = [ | ||
"addin-fixed-weights/program", | ||
"addin-vesting/program", | ||
# "addin-vesting/program/fuzz", | ||
] | ||
exclude = [ | ||
"solana-program-library", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
[package] | ||
name = "token-vesting" | ||
name = "spl-governance-addin-vesting" | ||
version = "0.1.0" | ||
authors = ["Elliott Benisty <[email protected]>", "Lucas Chaumeny <[email protected]>"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[workspace] | ||
members = [ | ||
"fuzz" | ||
] | ||
#[workspace] | ||
#members = [ | ||
# "fuzz" | ||
#] | ||
|
||
[features] | ||
no-entrypoint = [] | ||
|
@@ -22,20 +21,18 @@ num-traits = "0.2" | |
num-derive = "0.3" | ||
arrayref = "0.3.6" | ||
borsh = "0.9.1" | ||
solana-program = "1.5.6" | ||
spl-token = { version = "3.0.1", features = ["no-entrypoint"] } | ||
solana-program = "1.9.9" | ||
spl-token = { version = "3.2", features = ["no-entrypoint"] } | ||
spl-associated-token-account = { version = "1.0.2", features = ["no-entrypoint"] } | ||
#spl-governance = { version = "2.2.2", features = ["no-entrypoint"] } | ||
#spl-governance-tools = { version = "0.1.2" } | ||
spl-governance = { path="/mnt/working/solana/solana-program-library.git/governance/program", features = ["no-entrypoint"] } | ||
spl-governance-tools = { path="/mnt/working/solana/solana-program-library.git/governance/tools", version = "0.1.2" } | ||
spl-governance-addin-api = { path="/mnt/working/solana/solana-program-library.git/governance/addin-api", version = "0.1.1" } | ||
spl-governance = { path="../../solana-program-library/governance/program", features = ["no-entrypoint"] } | ||
spl-governance-tools = { path="../../solana-program-library/governance/tools", version = "0.1.2" } | ||
spl-governance-addin-api = { path="../../solana-program-library/governance/addin-api", version = "0.1.1" } | ||
arbitrary = { version = "0.4", features = ["derive"], optional = true } | ||
honggfuzz = { version = "0.5", optional = true } | ||
|
||
[dev-dependencies] | ||
solana-sdk = "1.5.6" | ||
solana-program-test = "1.5.6" | ||
solana-sdk = "1.9.9" | ||
solana-program-test = "1.9.9" | ||
tokio = { version = "1.0", features = ["macros"]} | ||
hex = "0.4" | ||
|
||
|
Submodule solana-program-library
added at
762c58