-
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.
Merge pull request #35 from neonlabsorg/34-fix-audit-issues
Fix audit issues #34 (reviewed by @mich-master)
- Loading branch information
Showing
6 changed files
with
28 additions
and
23 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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[profile.release] | ||
overflow-checks = true | ||
|
||
[workspace] | ||
members = [ | ||
"addin-fixed-weights/program", | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "spl-governance-addin-fixed-weights" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
description = "Solana Program Library Governance Voter Weight Addin Program" | ||
authors = ["NeonLabs Maintainers <[email protected]>"] | ||
repository = "https://github.com/neonlabsorg/neon-spl-governance/addin-fixed-weights/program" | ||
|
@@ -20,7 +20,7 @@ num-derive = "0.3" | |
num-traits = "0.2" | ||
serde = "1.0.127" | ||
serde_derive = "1.0.103" | ||
solana-program = "1.9.9" | ||
solana-program = "1.10.13" | ||
const_format = { version = "0.2.21" } | ||
spl-token = { path = "../../solana-program-library/token/program", version = "3.3", features = [ "no-entrypoint" ] } | ||
spl-governance-addin-api = { path = "../../solana-program-library/governance/addin-api", version = "0.1.1" } | ||
|
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,8 +1,10 @@ | ||
[package] | ||
name = "spl-governance-addin-vesting" | ||
version = "0.1.0" | ||
authors = ["Elliott Benisty <[email protected]>", "Lucas Chaumeny <[email protected]>"] | ||
edition = "2018" | ||
version = "0.1.1" | ||
description = "Solana Program Library Governance Addin For Vesting" | ||
authors = ["NeonLabs Maintainers <[email protected]>"] | ||
repository = "https://github.com/neonlabsorg/neon-spl-governance/addin-vesting/program" | ||
edition = "2021" | ||
|
||
[features] | ||
no-entrypoint = [] | ||
|
@@ -14,17 +16,17 @@ num-traits = "0.2" | |
num-derive = "0.3" | ||
arrayref = "0.3.6" | ||
borsh = "0.9.1" | ||
solana-program = "1.9.9" | ||
spl-token = { version = "3.2", features = ["no-entrypoint"] } | ||
solana-program = "1.10.13" | ||
spl-token = { version = "3.3.0", features = ["no-entrypoint"] } | ||
spl-associated-token-account = { version = "1.0.2", features = ["no-entrypoint"] } | ||
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 } | ||
|
||
[dev-dependencies] | ||
solana-sdk = "1.9.9" | ||
solana-program-test = "1.9.9" | ||
solana-sdk = "1.10.13" | ||
solana-program-test = "1.10.13" | ||
tokio = { version = "1.0", features = ["macros"]} | ||
hex = "0.4" | ||
|
||
|
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