Skip to content

Commit

Permalink
mv common/ sdk/
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Oct 25, 2018
1 parent 471d8f6 commit 3d774f8
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ serde_cbor = "0.9.0"
serde_derive = "1.0.27"
serde_json = "1.0.10"
socket2 = "0.3.8"
solana-sdk = { path = "common", version = "0.10.0" }
solana-sdk = { path = "sdk", version = "0.10.0" }
sys-info = "0.5.6"
tokio = "0.1"
tokio-codec = "0.1"
Expand Down Expand Up @@ -135,7 +135,7 @@ name = "chacha"
[workspace]
members = [
".",
"common",
"sdk",
"programs/native/noop",
"programs/native/bpf_loader",
"programs/native/lua_loader",
Expand Down
2 changes: 1 addition & 1 deletion ci/publish-crate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [[ -n $CI ]]; then
fi

# shellcheck disable=2044 # Disable 'For loops over find output are fragile...'
for Cargo_toml in {common,programs/native/{bpf_loader,lua_loader,noop}}/Cargo.toml; do
for Cargo_toml in {sdk,programs/native/{bpf_loader,lua_loader,noop}}/Cargo.toml; do
# TODO: Ensure the published version matches the contents of BUILDKITE_TAG
(
set -x
Expand Down
2 changes: 1 addition & 1 deletion programs/bpf/noop_rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ license = "Apache-2.0"

[dependencies]
rbpf = "0.1.0"
solana-sdk = { path = "../../../common", version = "0.10.0" }
solana-sdk = { path = "../../../sdk", version = "0.10.0" }
2 changes: 1 addition & 1 deletion programs/native/bpf_loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ log = "0.4.2"
rbpf = "0.1.0"
serde = "1.0.27"
serde_derive = "1.0.27"
solana-sdk = { path = "../../../common", version = "0.10.0" }
solana-sdk = { path = "../../../sdk", version = "0.10.0" }

[lib]
name = "bpf_loader"
Expand Down
2 changes: 1 addition & 1 deletion programs/native/lua_loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ log = "0.4.2"
rlua = "0.15.2"
serde = "1.0.27"
serde_derive = "1.0.27"
solana-sdk = { path = "../../../common", version = "0.10.0" }
solana-sdk = { path = "../../../sdk", version = "0.10.0" }

[dev-dependencies]
bincode = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion programs/native/noop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"

[dependencies]
solana-sdk = { path = "../../../common", version = "0.10.0" }
solana-sdk = { path = "../../../sdk", version = "0.10.0" }

[lib]
name = "noop"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3d774f8

Please sign in to comment.