Skip to content

Commit

Permalink
Support [IU]256, Timepoint, Duration (#1000)
Browse files Browse the repository at this point in the history
### What

Support [IU]256, Timepoint, Duration. 

### Why

[TODO: Why this change is being made. Include any context required to
understand the why.]

### Known limitations
  • Loading branch information
jayz22 authored Jun 27, 2023
1 parent e90db9f commit 0a05402
Show file tree
Hide file tree
Showing 5 changed files with 399 additions and 73 deletions.
38 changes: 19 additions & 19 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 = "422ce4110f26097e94835e0a70a4ed8c10b5bc16"
rev = "7ed0c2903049092b70e6e4f366e70e677ce134ea"

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

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

[workspace.dependencies.stellar-strkey]
version = "0.0.7"
Expand Down
2 changes: 1 addition & 1 deletion soroban-sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ pub use map::Map;
pub use symbol::Symbol;
pub use vec::Vec;
mod num;
pub use num::{I256, U256};
pub use num::{Duration, Timepoint, I256, U256};
mod string;
pub use string::String;

Expand Down
Loading

0 comments on commit 0a05402

Please sign in to comment.