Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions spel-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ path = "src/bin/main.rs"

[dependencies]
spel-framework-core = { path = "../spel-framework-core", features = ["idl-gen"] }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
common = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
sequencer_service_rpc = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["client"] }
wallet = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
common = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
sequencer_service_rpc = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2", features = ["client"] }
wallet = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
risc0-zkvm = { version = "3.0.3", features = ["std"] }
base58 = "0.2"
serde = { version = "1.0", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions spel-cli/src/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ ui/
let lez_ref_ffi = match (lez_tag, lez_rev) {
(Some(t), _) => format!("tag = \"{}\"", t),
(_, Some(r)) => format!("rev = \"{}\"", r),
_ => "tag = \"v0.2.0-rc3\"".to_string(),
_ => "tag = \"v0.1.2\"".to_string(),
};
Comment on lines 97 to 101
let spel_ref_ffi = match (spel_tag, spel_rev) {
(Some(t), _) => format!("tag = \"{}\"", t),
Expand Down Expand Up @@ -688,7 +688,7 @@ risc0-zkvm = {{ version = "=3.0.5", features = ["std"] }}
let lez_ref = match (lez_tag, lez_rev) {
(Some(t), _) => format!("tag = \"{}\"", t),
(_, Some(r)) => format!("rev = \"{}\"", r),
_ => "tag = \"v0.2.0-rc3\"".to_string(),
_ => "tag = \"v0.1.2\"".to_string(),
};
let spel_ref = match (spel_tag, spel_rev) {
(Some(t), _) => format!("tag = \"{}\"", t),
Expand Down
4 changes: 2 additions & 2 deletions spel-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,15 +208,15 @@ pub async fn run() {
println!("Create a new SPEL project");
println!();
println!("Options:");
println!(" --lez-tag <TAG> LEZ version tag (default: v0.2.0-rc3)");
println!(" --lez-tag <TAG> LEZ version tag (default: v0.1.2)");
println!(" --spel-rev <REV> SPEL revision (default: refs/pull/122/head)");
println!(" --lez-rev <REV> LEZ revision (alternative to --lez-tag)");
println!(" --spel-tag <TAG> SPEL tag (alternative to --spel-rev)");
println!();
println!("Examples:");
println!(" spel init my-project");
println!(
" spel init my-project --lez-tag v0.2.0-rc3 --spel-rev refs/pull/122/head"
" spel init my-project --lez-tag v0.1.2 --spel-rev refs/pull/122/head"
);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion spel-cli/src/serialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ mod tests {
/// Verifies spel CLI's serialization is compatible with the guest-side
/// Deserializer from risc0_zkvm (used by nssa_core::program::read_nssa_inputs).
/// This is the contract between the CLI (transaction sender) and the
/// on-chain program (transaction executor) at LEZ v0.2.0-rc3.
/// on-chain program (transaction executor) at LEZ v0.1.2.
#[test]
fn serialize_deserialize_roundtrip_with_bytes32() {
#[derive(Deserialize, Debug, PartialEq)]
Expand Down
10 changes: 5 additions & 5 deletions spel-ffi-compile-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ publish = false
spel-client-gen = { path = "../spel-client-gen" }

[dependencies]
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
common = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
sequencer_service_rpc = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["client"] }
wallet = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
common = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
sequencer_service_rpc = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2", features = ["client"] }
wallet = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
borsh = "1.5"
Expand Down
4 changes: 2 additions & 2 deletions spel-framework-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ idl-gen = ["dep:syn", "dep:proc-macro2", "dep:toml"]
host = ["dep:nssa"]

[dependencies]
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["host"] }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2", features = ["host"] }
borsh = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
base58 = { version = "0.2", optional = true }

nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", optional = true }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2", optional = true }

syn = { version = "2.0", features = ["full", "extra-traits"], optional = true }
proc-macro2 = { version = "1.0", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions spel-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ host = ["dep:nssa", "spel-framework-core/host"]
[dependencies]
spel-framework-core = { path = "../spel-framework-core" }
spel-framework-macros = { path = "../spel-framework-macros" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["host"] }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", optional = true }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2", features = ["host"] }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2", optional = true }
borsh = { version = "1.0", features = ["derive"] }
serde_json = "1"

Expand Down
10 changes: 5 additions & 5 deletions test-modules/test_modules_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
common = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
sequencer_service_rpc = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["client"] }
wallet = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
nssa = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
common = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
sequencer_service_rpc = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2", features = ["client"] }
wallet = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2" }
spel-framework-core = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0" }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/fixture_program/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/e2e/fixture_program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ publish = false

[dependencies]
spel-framework = { path = "../../../spel-framework" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3", features = ["host"] }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.1.2", features = ["host"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Loading