Skip to content

Commit 0a05402

Browse files
authored
Support [IU]256, Timepoint, Duration (#1000)
### What Support [IU]256, Timepoint, Duration. ### Why [TODO: Why this change is being made. Include any context required to understand the why.] ### Known limitations
1 parent e90db9f commit 0a05402

5 files changed

Lines changed: 399 additions & 73 deletions

File tree

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ soroban-token-sdk = { version = "0.8.4", path = "soroban-token-sdk" }
4040
[workspace.dependencies.soroban-env-common]
4141
version = "0.0.16"
4242
git = "https://github.com/stellar/rs-soroban-env"
43-
rev = "422ce4110f26097e94835e0a70a4ed8c10b5bc16"
43+
rev = "7ed0c2903049092b70e6e4f366e70e677ce134ea"
4444

4545
[workspace.dependencies.soroban-env-guest]
4646
version = "0.0.16"
4747
git = "https://github.com/stellar/rs-soroban-env"
48-
rev = "422ce4110f26097e94835e0a70a4ed8c10b5bc16"
48+
rev = "7ed0c2903049092b70e6e4f366e70e677ce134ea"
4949

5050
[workspace.dependencies.soroban-env-host]
5151
version = "0.0.16"
5252
git = "https://github.com/stellar/rs-soroban-env"
53-
rev = "422ce4110f26097e94835e0a70a4ed8c10b5bc16"
53+
rev = "7ed0c2903049092b70e6e4f366e70e677ce134ea"
5454

5555
[workspace.dependencies.stellar-strkey]
5656
version = "0.0.7"

soroban-sdk/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ pub use map::Map;
755755
pub use symbol::Symbol;
756756
pub use vec::Vec;
757757
mod num;
758-
pub use num::{I256, U256};
758+
pub use num::{Duration, Timepoint, I256, U256};
759759
mod string;
760760
pub use string::String;
761761

0 commit comments

Comments
 (0)