Skip to content
Draft
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
135 changes: 80 additions & 55 deletions Cargo.lock

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

32 changes: 23 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,34 +47,48 @@ path = "cmd/crates/stellar-ledger"

# Dependencies from the rs-stellar-xdr repo:
[workspace.dependencies.stellar-xdr]
version = "23.0.0"
version = "25.0.0"

# Dependencies from the rs-soroban-sdk repo:
[workspace.dependencies.soroban-spec]
version = "23.0.1"
# version = "23.3.0"
git = "https://github.com/stellar/rs-soroban-sdk"
branch = "release/v25-preview"

[workspace.dependencies.soroban-spec-rust]
version = "23.0.1"
# version = "23.3.0"
git = "https://github.com/stellar/rs-soroban-sdk"
branch = "release/v25-preview"

[workspace.dependencies.soroban-sdk]
version = "23.0.1"
# version = "23.3.0"
git = "https://github.com/stellar/rs-soroban-sdk"
branch = "release/v25-preview"

[workspace.dependencies.soroban-env-host]
version = "23.0.1"
version = "25.0.0"

[workspace.dependencies.soroban-token-sdk]
version = "23.0.1"
# version = "23.3.0"
git = "https://github.com/stellar/rs-soroban-sdk"
branch = "release/v25-preview"

[workspace.dependencies.stellar-asset-spec]
version = "23.0.1"
# version = "23.3.0"
git = "https://github.com/stellar/rs-soroban-sdk"
branch = "release/v25-preview"

[workspace.dependencies.soroban-ledger-snapshot]
version = "23.0.1"
# version = "23.3.0"
git = "https://github.com/stellar/rs-soroban-sdk"
branch = "release/v25-preview"

# Dependencies from the rs-stellar-rpc-client repo:
[workspace.dependencies.soroban-rpc]
package = "stellar-rpc-client"
version = "23.2.1"
# version = "23.2.1"
git = "https://github.com/stellar/rs-stellar-rpc-client"
branch = "protocol-25"

# Dependencies from elsewhere shared by crates:
[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion cmd/crates/soroban-spec-typescript/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub fn generate_from_file(

pub fn generate_from_wasm(wasm: &[u8]) -> Result<String, FromWasmError> {
let spec = from_wasm(wasm)?;
let json = generate(&spec);
let json = generate(spec.as_slice());
Ok(json)
}

Expand Down
Loading