Adapt zk-token-{sdk,proof-program} for use in the monorepo

This commit is contained in:
Michael Vines
2022-01-04 20:44:07 -08:00
parent e1848ecbcc
commit 69e632a337
5 changed files with 20 additions and 16 deletions

View File

@@ -1,9 +1,9 @@
[package]
name = "spl-zk-token-sdk"
description = "Solana Program Library ZkToken SDK"
name = "solana-zk-token-sdk"
description = "Solana Zk Token SDK"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"
version = "0.1.0"
repository = "https://github.com/solana-labs/solana"
version = "1.10.0"
license = "Apache-2.0"
edition = "2021"
@@ -12,7 +12,7 @@ base64 = "0.13"
bytemuck = { version = "1.7.2", features = ["derive"] }
num-derive = "0.3"
num-traits = "0.2"
solana-program = "=1.9.1"
solana-program = { path = "../sdk/program", version = "=1.10.0" }
[target.'cfg(not(target_arch = "bpf"))'.dependencies]
aes-gcm-siv = "0.10.3"
@@ -28,7 +28,7 @@ rand = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha3 = "0.9"
solana-sdk = "=1.9.1"
solana-sdk = { path = "../sdk", version = "=1.10.0" }
subtle = "2"
thiserror = "1"
zeroize = { version = "1.2.0", default-features = false, features = ["zeroize_derive"] }

View File

@@ -1,3 +1,5 @@
#![allow(clippy::integer_arithmetic)]
#[cfg(not(target_arch = "bpf"))]
#[macro_use]
pub(crate) mod macros;