-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Leigh McCulloch <[email protected]>
- Loading branch information
1 parent
4a3e4f1
commit 3992556
Showing
16 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,21 +6,21 @@ repository = "https://github.com/stellar/rs-soroban-sdk" | |
authors = ["Stellar Development Foundation <[email protected]>"] | ||
readme = "../README.md" | ||
license = "Apache-2.0" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
|
||
[features] | ||
testutils = ["soroban-sdk/testutils", "dep:ed25519-dalek", "dep:rand"] | ||
|
||
[dependencies] | ||
soroban-sdk = "0.0.6" | ||
soroban-sdk = "0.1.0" | ||
|
||
[target.'cfg(not(target_family="wasm"))'.dependencies] | ||
ed25519-dalek = { version = "1.0.1", optional = true } | ||
rand = { version = "0.7.3", optional = true } | ||
|
||
[dev_dependencies] | ||
soroban-sdk = { version = "0.0.6", features = ["testutils"] } | ||
soroban-sdk = { version = "0.1.0", features = ["testutils"] } | ||
ed25519-dalek = { version = "1.0.1" } | ||
rand = { version = "0.7.3" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" | |
authors = ["Stellar Development Foundation <[email protected]>"] | ||
readme = "../README.md" | ||
license = "Apache-2.0" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
|
||
|
@@ -15,7 +15,7 @@ proc-macro = true | |
doctest = false | ||
|
||
[dependencies] | ||
soroban-spec = "0.0.6" | ||
soroban-spec = "0.1.0" | ||
soroban-env-common = "0.0.6" | ||
stellar-xdr = { version = "0.0.6", features = ["next", "std"] } | ||
syn = {version="1.0",features=["full"]} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" | |
authors = ["Stellar Development Foundation <[email protected]>"] | ||
readme = "../README.md" | ||
license = "Apache-2.0" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
|
||
|
@@ -15,7 +15,7 @@ crate-type = ["cdylib", "rlib"] | |
doctest = false | ||
|
||
[dependencies] | ||
soroban-sdk-macros = { version = "0.0.6" } | ||
soroban-sdk-macros = { version = "0.1.0" } | ||
bytes-lit = "0.0.4" | ||
|
||
[target.'cfg(target_family="wasm")'.dependencies] | ||
|
@@ -30,7 +30,7 @@ rand = "0.8.5" | |
[dev-dependencies] | ||
soroban-env-host = { version = "0.0.6", features = ["vm", "hostfn_log_fmt_values", "testutils"] } | ||
stellar-xdr = { version = "0.0.6", features = ["next", "std"] } | ||
soroban-spec = "0.0.6" | ||
soroban-spec = "0.1.0" | ||
ed25519-dalek = "1.0.1" | ||
rand = "0.8.5" | ||
hex = "0.4.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" | |
authors = ["Stellar Development Foundation <[email protected]>"] | ||
readme = "../README.md" | ||
license = "Apache-2.0" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" | |
authors = ["Stellar Development Foundation <[email protected]>"] | ||
readme = "../README.md" | ||
license = "Apache-2.0" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
|
||
|
@@ -18,14 +18,14 @@ doctest = false | |
testutils = ["soroban-sdk/testutils", "dep:ed25519-dalek", "dep:rand"] | ||
|
||
[dependencies] | ||
soroban-sdk = "0.0.6" | ||
soroban-auth = "0.0.6" | ||
soroban-sdk = "0.1.0" | ||
soroban-auth = "0.1.0" | ||
|
||
[target.'cfg(not(target_family="wasm"))'.dependencies] | ||
ed25519-dalek = { version = "1.0.1", optional = true } | ||
rand = { version = "0.7.3", optional = true } | ||
|
||
[dev_dependencies] | ||
soroban-auth = { version = "0.0.6", features = ["testutils"] } | ||
soroban-auth = { version = "0.1.0", features = ["testutils"] } | ||
ed25519-dalek = { version = "1.0.1" } | ||
rand = { version = "0.7.3" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_add_bigint" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_add_u64" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_contract_data" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_empty" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_result" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_events" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_import_contract" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_invoke_contract" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_logging" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "test_udt" | ||
version = "0.0.6" | ||
version = "0.1.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|