Skip to content

Commit

Permalink
Adapt to env change passing [IU]256Vals in host interface (#1020)
Browse files Browse the repository at this point in the history
Just adapting the SDK to
stellar/rs-soroban-env#889
  • Loading branch information
graydon authored Jun 24, 2023
1 parent 71a3bea commit 1feb62f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ soroban-token-sdk = { version = "0.8.4", path = "soroban-token-sdk" }
[workspace.dependencies.soroban-env-common]
version = "0.0.16"
git = "https://github.com/stellar/rs-soroban-env"
rev = "a9dbd06aaa22c67a96b5eef81c80326e50a89086"
rev = "aff56a8cbf5c2f3c23fb0174da6edeb070322028"

[workspace.dependencies.soroban-env-guest]
version = "0.0.16"
git = "https://github.com/stellar/rs-soroban-env"
rev = "a9dbd06aaa22c67a96b5eef81c80326e50a89086"
rev = "aff56a8cbf5c2f3c23fb0174da6edeb070322028"

[workspace.dependencies.soroban-env-host]
version = "0.0.16"
git = "https://github.com/stellar/rs-soroban-env"
rev = "a9dbd06aaa22c67a96b5eef81c80326e50a89086"
rev = "aff56a8cbf5c2f3c23fb0174da6edeb070322028"

[workspace.dependencies.stellar-strkey]
version = "0.0.7"
Expand Down
4 changes: 2 additions & 2 deletions soroban-sdk/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ use crate::{
Address, Vec,
};
use internal::{
AddressObject, Bool, BytesObject, DurationObject, I128Object, I256Object, I64Object,
AddressObject, Bool, BytesObject, DurationObject, I128Object, I256Object, I256Val, I64Object,
StorageType, StringObject, Symbol, SymbolObject, TimepointObject, U128Object, U256Object,
U32Val, U64Object, U64Val, Void,
U256Val, U32Val, U64Object, U64Val, Void,
};

#[doc(hidden)]
Expand Down

0 comments on commit 1feb62f

Please sign in to comment.