Fix *.so copy in solana-devnet, correct crate feature for cli+agent (#198)

This commit is contained in:
Stanisław Drozd 2021-04-08 12:47:35 +02:00 committed by GitHub
parent cc3482a607
commit a330c89d1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -24,4 +24,4 @@ RUN --mount=type=cache,target=/usr/local,from=rust,source=/usr/local \
--mount=type=cache,target=bin,from=rust,source=bin \ --mount=type=cache,target=bin,from=rust,source=bin \
cargo build-bpf --manifest-path "bridge/Cargo.toml" && \ cargo build-bpf --manifest-path "bridge/Cargo.toml" && \
mkdir -p /opt/solana/deps && \ mkdir -p /opt/solana/deps && \
cp target/deploy/spl_bridge_debug.so /opt/solana/deps/spl_bridge.so cp target/deploy/spl_bridge.so /opt/solana/deps/spl_bridge.so

View File

@ -12,8 +12,8 @@ prost-types = "0.6"
solana-sdk = { version = "=1.5.5" } solana-sdk = { version = "=1.5.5" }
solana-client = { version = "=1.5.5" } solana-client = { version = "=1.5.5" }
solana-faucet = "=1.5.5" solana-faucet = "=1.5.5"
spl-token = "=3.0.1" spl-token = {version = "=3.0.1", features = ["no-entrypoint"]}
wormhole-bridge = { path = "../bridge" } wormhole-bridge = { path = "../bridge", default-features = false, features = ["no-entrypoint"] }
primitive-types = { version = "0.7.2" } primitive-types = { version = "0.7.2" }
hex = "0.4.2" hex = "0.4.2"
thiserror = "1.0.20" thiserror = "1.0.20"

View File

@ -15,8 +15,8 @@ solana-sdk = { version = "=1.5.5" }
solana-client = { version = "=1.5.5" } solana-client = { version = "=1.5.5" }
solana-faucet = "=1.5.5" solana-faucet = "=1.5.5"
solana-account-decoder = { version = "=1.5.5" } solana-account-decoder = { version = "=1.5.5" }
spl-token = "=3.0.1" spl-token = {version = "=3.0.1", features = ["no-entrypoint"]}
wormhole-bridge = { path = "../bridge" } wormhole-bridge = { path = "../bridge", default-features = false, features = ["no-entrypoint"] }
primitive-types = { version = "0.7.2" } primitive-types = { version = "0.7.2" }
hex = "0.4.2" hex = "0.4.2"
thiserror = "1.0.20" thiserror = "1.0.20"