diff --git a/Cargo.lock b/Cargo.lock index c7f48b21..34367015 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4828,7 +4828,6 @@ version = "0.1.0" dependencies = [ "amm_core", "borsh", - "bytemuck", "env_logger", "hex", "hex-literal 1.1.0", @@ -4843,7 +4842,6 @@ dependencies = [ "sha2", "test-case", "test_program_methods", - "token_core", "thiserror 2.0.17", "token_core", ] @@ -7796,7 +7794,6 @@ dependencies = [ "nssa_core", "optfield", "rand 0.8.5", - "risc0-zkvm", "serde", "serde_json", "sha2", diff --git a/nssa/Cargo.toml b/nssa/Cargo.toml index 2f7a97d4..7efa2006 100644 --- a/nssa/Cargo.toml +++ b/nssa/Cargo.toml @@ -16,7 +16,6 @@ borsh.workspace = true hex.workspace = true secp256k1 = "0.31.1" risc0-binfmt = "3.0.2" -bytemuck = "1.24.0" log.workspace = true [build-dependencies] diff --git a/programs/amm/Cargo.toml b/programs/amm/Cargo.toml index ea60df2b..252cb825 100644 --- a/programs/amm/Cargo.toml +++ b/programs/amm/Cargo.toml @@ -2,6 +2,7 @@ name = "amm_program" version = "0.1.0" edition = "2024" +license = { workspace = true } [dependencies] nssa_core.workspace = true diff --git a/programs/amm/core/Cargo.toml b/programs/amm/core/Cargo.toml index 076ee1f3..188e87c8 100644 --- a/programs/amm/core/Cargo.toml +++ b/programs/amm/core/Cargo.toml @@ -2,6 +2,7 @@ name = "amm_core" version = "0.1.0" edition = "2024" +license = { workspace = true } [dependencies] nssa_core.workspace = true diff --git a/wallet/Cargo.toml b/wallet/Cargo.toml index 527ddfde..8151a1e4 100644 --- a/wallet/Cargo.toml +++ b/wallet/Cargo.toml @@ -28,7 +28,6 @@ rand.workspace = true itertools.workspace = true sha2.workspace = true futures.workspace = true -risc0-zkvm.workspace = true async-stream = "0.3.6" indicatif = { version = "0.18.3", features = ["improved_unicode"] } optfield = "0.4.0"