forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
141 additions
and
141 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
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 |
---|---|---|
|
@@ -2,16 +2,16 @@ | |
authors = ["Solana Maintainers <[email protected]>"] | ||
edition = "2018" | ||
name = "solana-bench-streamer" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solana.com/" | ||
|
||
[dependencies] | ||
clap = "2.32.0" | ||
solana = { path = "../core", version = "0.12.0" } | ||
solana-logger = { path = "../logger", version = "0.12.0" } | ||
solana-netutil = { path = "../netutil", version = "0.12.0" } | ||
solana = { path = "../core", version = "0.13.0" } | ||
solana-logger = { path = "../logger", version = "0.13.0" } | ||
solana-netutil = { path = "../netutil", version = "0.13.0" } | ||
|
||
[features] | ||
cuda = ["solana/cuda"] |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = ["Solana Maintainers <[email protected]>"] | ||
edition = "2018" | ||
name = "solana-bench-tps" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solana.com/" | ||
|
@@ -11,11 +11,11 @@ homepage = "https://solana.com/" | |
clap = "2.32.0" | ||
rayon = "1.0.3" | ||
serde_json = "1.0.39" | ||
solana = { path = "../core", version = "0.12.0" } | ||
solana-drone = { path = "../drone", version = "0.12.0" } | ||
solana-logger = { path = "../logger", version = "0.12.0" } | ||
solana-metrics = { path = "../metrics", version = "0.12.0" } | ||
solana-sdk = { path = "../sdk", version = "0.12.0" } | ||
solana = { path = "../core", version = "0.13.0" } | ||
solana-drone = { path = "../drone", version = "0.13.0" } | ||
solana-logger = { path = "../logger", version = "0.13.0" } | ||
solana-metrics = { path = "../metrics", version = "0.13.0" } | ||
solana-sdk = { path = "../sdk", version = "0.13.0" } | ||
|
||
[features] | ||
cuda = ["solana/cuda"] |
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 = "solana-drone" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana Drone" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
@@ -19,9 +19,9 @@ clap = "2.31" | |
log = "0.4.2" | ||
serde = "1.0.89" | ||
serde_derive = "1.0.89" | ||
solana-logger = { path = "../logger", version = "0.12.0" } | ||
solana-sdk = { path = "../sdk", version = "0.12.0" } | ||
solana-metrics = { path = "../metrics", version = "0.12.0" } | ||
solana-logger = { path = "../logger", version = "0.13.0" } | ||
solana-sdk = { path = "../sdk", version = "0.13.0" } | ||
solana-metrics = { path = "../metrics", version = "0.13.0" } | ||
tokio = "0.1" | ||
tokio-codec = "0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ authors = ["Solana Maintainers <[email protected]>"] | |
edition = "2018" | ||
name = "solana-fullnode" | ||
description = "Blockchain, Rebuilt for Scale" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solana.com/" | ||
|
@@ -12,15 +12,15 @@ homepage = "https://solana.com/" | |
clap = "2.32.0" | ||
log = "0.4.2" | ||
serde_json = "1.0.39" | ||
solana = { path = "../core", version = "0.12.0" } | ||
solana-drone = { path = "../drone", version = "0.12.0" } | ||
solana-logger = { path = "../logger", version = "0.12.0" } | ||
solana-netutil = { path = "../netutil", version = "0.12.0" } | ||
solana-metrics = { path = "../metrics", version = "0.12.0" } | ||
solana-runtime = { path = "../runtime", version = "0.12.0" } | ||
solana-sdk = { path = "../sdk", version = "0.12.0" } | ||
solana-vote-api = { path = "../programs/vote_api", version = "0.12.0" } | ||
solana-vote-signer = { path = "../vote-signer", version = "0.12.0" } | ||
solana = { path = "../core", version = "0.13.0" } | ||
solana-drone = { path = "../drone", version = "0.13.0" } | ||
solana-logger = { path = "../logger", version = "0.13.0" } | ||
solana-netutil = { path = "../netutil", version = "0.13.0" } | ||
solana-metrics = { path = "../metrics", version = "0.13.0" } | ||
solana-runtime = { path = "../runtime", version = "0.13.0" } | ||
solana-sdk = { path = "../sdk", version = "0.13.0" } | ||
solana-vote-api = { path = "../programs/vote_api", version = "0.13.0" } | ||
solana-vote-signer = { path = "../vote-signer", version = "0.13.0" } | ||
|
||
[features] | ||
chacha = ["solana/chacha"] | ||
|
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 |
---|---|---|
|
@@ -3,16 +3,16 @@ authors = ["Solana Maintainers <[email protected]>"] | |
edition = "2018" | ||
name = "solana-genesis" | ||
description = "Blockchain, Rebuilt for Scale" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solana.com/" | ||
|
||
[dependencies] | ||
clap = "2.32.0" | ||
serde_json = "1.0.39" | ||
solana = { path = "../core", version = "0.12.0" } | ||
solana-sdk = { path = "../sdk", version = "0.12.0" } | ||
solana = { path = "../core", version = "0.13.0" } | ||
solana-sdk = { path = "../sdk", version = "0.13.0" } | ||
|
||
[features] | ||
cuda = ["solana/cuda"] |
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 = "solana-keygen" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana key generation utility" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
@@ -14,7 +14,7 @@ cuda = [] | |
[dependencies] | ||
dirs = "1.0.5" | ||
clap = "2.31" | ||
solana-sdk = { path = "../sdk", version = "0.12.0" } | ||
solana-sdk = { path = "../sdk", version = "0.13.0" } | ||
|
||
[[bin]] | ||
name = "solana-keygen" | ||
|
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 |
---|---|---|
|
@@ -3,18 +3,18 @@ authors = ["Solana Maintainers <[email protected]>"] | |
edition = "2018" | ||
name = "solana-ledger-tool" | ||
description = "Blockchain, Rebuilt for Scale" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solana.com/" | ||
|
||
[dependencies] | ||
clap = "2.32.0" | ||
serde_json = "1.0.39" | ||
solana = { path = "../core", version = "0.12.0" } | ||
solana-sdk = { path = "../sdk", version = "0.12.0" } | ||
solana-logger = { path = "../logger", version = "0.12.0" } | ||
solana-runtime = { path = "../runtime", version = "0.12.0" } | ||
solana = { path = "../core", version = "0.13.0" } | ||
solana-sdk = { path = "../sdk", version = "0.13.0" } | ||
solana-logger = { path = "../logger", version = "0.13.0" } | ||
solana-runtime = { path = "../runtime", version = "0.13.0" } | ||
|
||
[dev-dependencies] | ||
assert_cmd = "0.11" | ||
|
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 = "solana-logger" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana Logger" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
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 = "solana-metrics" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana Metrics" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
@@ -14,7 +14,7 @@ log = "0.4.2" | |
reqwest = "0.9.11" | ||
lazy_static = "1.3.0" | ||
sys-info = "0.5.6" | ||
solana-sdk = { path = "../sdk", version = "0.12.0" } | ||
solana-sdk = { path = "../sdk", version = "0.13.0" } | ||
|
||
[dev-dependencies] | ||
rand = "0.6.5" | ||
|
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 = "solana-netutil" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana Network Utilities" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
@@ -18,7 +18,7 @@ reqwest = "0.9.0" | |
socket2 = "0.3.8" | ||
|
||
[dev-dependencies] | ||
solana-logger = { path = "../logger", version = "0.12.0" } | ||
solana-logger = { path = "../logger", version = "0.13.0" } | ||
|
||
[lib] | ||
name = "solana_netutil" |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "solana-bpf-rust-noop" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana BPF noop program written in Rust" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
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 = "solana-bpfloader" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana BPF Loader" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
@@ -15,8 +15,8 @@ libc = "0.2.50" | |
log = "0.4.2" | ||
solana_rbpf = "=0.1.10" | ||
serde = "1.0.89" | ||
solana-logger = { path = "../../logger", version = "0.12.0" } | ||
solana-sdk = { path = "../../sdk", version = "0.12.0" } | ||
solana-logger = { path = "../../logger", version = "0.13.0" } | ||
solana-sdk = { path = "../../sdk", version = "0.13.0" } | ||
|
||
[lib] | ||
name = "solana_bpf_loader" | ||
|
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 = "solana-budget-program" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana budget program" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
@@ -14,12 +14,12 @@ chrono = { version = "0.4.0", features = ["serde"] } | |
log = "0.4.2" | ||
serde = "1.0.89" | ||
serde_derive = "1.0.89" | ||
solana-budget-api = { path = "../budget_api", version = "0.12.0" } | ||
solana-logger = { path = "../../logger", version = "0.12.0" } | ||
solana-sdk = { path = "../../sdk", version = "0.12.0" } | ||
solana-budget-api = { path = "../budget_api", version = "0.13.0" } | ||
solana-logger = { path = "../../logger", version = "0.13.0" } | ||
solana-sdk = { path = "../../sdk", version = "0.13.0" } | ||
|
||
[dev-dependencies] | ||
solana-runtime = { path = "../../runtime", version = "0.12.0" } | ||
solana-runtime = { path = "../../runtime", version = "0.13.0" } | ||
|
||
[lib] | ||
name = "solana_budget_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "solana-budget-api" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana Budget program API" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
@@ -13,7 +13,7 @@ bincode = "1.1.2" | |
chrono = { version = "0.4.0", features = ["serde"] } | ||
serde = "1.0.89" | ||
serde_derive = "1.0.89" | ||
solana-sdk = { path = "../../sdk", version = "0.12.0" } | ||
solana-sdk = { path = "../../sdk", version = "0.13.0" } | ||
|
||
[lib] | ||
name = "solana_budget_api" | ||
|
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 = "solana-failure" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
description = "Solana failure program" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
|
@@ -9,11 +9,11 @@ homepage = "https://solana.com/" | |
edition = "2018" | ||
|
||
[dependencies] | ||
solana-sdk = { path = "../../sdk", version = "0.12.0" } | ||
solana-sdk = { path = "../../sdk", version = "0.13.0" } | ||
log = "0.4.2" | ||
|
||
[dev-dependencies] | ||
solana-runtime = { path = "../../runtime", version = "0.12.0" } | ||
solana-runtime = { path = "../../runtime", version = "0.13.0" } | ||
|
||
[lib] | ||
name = "failure" | ||
|
Oops, something went wrong.