Skip to content

Commit

Permalink
sdk: release v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill authored and bors-libra committed Oct 4, 2021
1 parent 6d38aaa commit 99524bb
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 36 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crypto/crypto-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diem-crypto-derive"
version = "0.0.2"
version = "0.0.3"
authors = ["Diem Association <[email protected]>"]
description = "Diem custom derives for `diem-crypto`"
repository = "https://github.com/diem/diem"
Expand Down
4 changes: 2 additions & 2 deletions crypto/crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diem-crypto"
version = "0.0.2"
version = "0.0.3"
authors = ["Diem Association <[email protected]>"]
description = "Diem diem-crypto"
repository = "https://github.com/diem/diem"
Expand Down Expand Up @@ -32,7 +32,7 @@ thiserror = "1.0.24"
tiny-keccak = { version = "2.0.2", features = ["sha3"] }
x25519-dalek = { version = "0.1.0", package = "x25519-dalek-fiat", default-features = false, features = ["std"] }
aes-gcm = "0.8.0"
diem-crypto-derive = { path = "../crypto-derive", version = "0.0.2" }
diem-crypto-derive = { path = "../crypto-derive", version = "0.0.3" }
bcs = "0.1.2"

[dev-dependencies]
Expand Down
10 changes: 5 additions & 5 deletions json-rpc/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diem-json-rpc-types"
version = "0.0.2"
version = "0.0.3"
authors = ["Diem Association <[email protected]>"]
description = "Diem JSONRPC Types"
repository = "https://github.com/diem/diem"
Expand All @@ -16,10 +16,10 @@ serde = { version = "1.0.124", default-features = false }
serde_json = "1.0.64"

bcs = "0.1.2"
diem-crypto = { path = "../../crypto/crypto", version = "0.0.2" }
diem-transaction-builder = { path = "../../sdk/transaction-builder", version = "0.0.2" }
diem-types = { path = "../../types", version = "0.0.2" }
move-core-types = { path = "../../language/move-core/types", version = "0.0.2" }
diem-crypto = { path = "../../crypto/crypto", version = "0.0.3" }
diem-transaction-builder = { path = "../../sdk/transaction-builder", version = "0.0.3" }
diem-types = { path = "../../types", version = "0.0.3" }
move-core-types = { path = "../../language/move-core/types", version = "0.0.3" }
num-derive = "0.3.3"
num-traits = "0.2.14"
thiserror = "1.0.24"
Expand Down
2 changes: 1 addition & 1 deletion language/move-core/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "move-core-types"
version = "0.0.2"
version = "0.0.3"
authors = ["Diem Association <[email protected]>"]
description = "Core types for Move"
repository = "https://github.com/diem/diem"
Expand Down
12 changes: 6 additions & 6 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diem-sdk"
version = "0.0.2"
version = "0.0.3"
authors = ["Diem Association <[email protected]>"]
description = "The Official Diem SDK"
repository = "https://github.com/diem/diem"
Expand All @@ -18,13 +18,13 @@ bcs = "0.1"
rand_core = "0.6.2"
serde = { version = "1.0.124", features = ["derive"] }

diem-crypto = { path = "../crypto/crypto", version = "0.0.2" }
diem-types = { path = "../types", version = "0.0.2"}
move-core-types = { path = "../language/move-core/types", version = "0.0.2" }
diem-transaction-builder = { path = "./transaction-builder", version = "0.0.2" }
diem-crypto = { path = "../crypto/crypto", version = "0.0.3" }
diem-types = { path = "../types", version = "0.0.3"}
move-core-types = { path = "../language/move-core/types", version = "0.0.3" }
diem-transaction-builder = { path = "./transaction-builder", version = "0.0.3" }

# Optional Dependencies
diem-client = { path = "./client", version = "0.0.2", optional = true }
diem-client = { path = "./client", version = "0.0.3", optional = true }

[dev-dependencies]
diem-workspace-hack = { path = "../common/workspace-hack" }
12 changes: 6 additions & 6 deletions sdk/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diem-client"
version = "0.0.2"
version = "0.0.3"
authors = ["Diem Association <[email protected]>"]
description = "Diem JSON-RPC client"
repository = "https://github.com/diem/diem"
Expand All @@ -24,10 +24,10 @@ serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.64"
tracing = "0.1.26"

diem-crypto = { path = "../../crypto/crypto", version = "0.0.2" }
diem-json-rpc-types = { path = "../../json-rpc/types", version = "0.0.2" }
move-core-types = { path = "../../language/move-core/types", version = "0.0.2" }
diem-types = { path = "../../types", version = "0.0.2" }
diem-crypto = { path = "../../crypto/crypto", version = "0.0.3" }
diem-json-rpc-types = { path = "../../json-rpc/types", version = "0.0.3" }
move-core-types = { path = "../../language/move-core/types", version = "0.0.3" }
diem-types = { path = "../../types", version = "0.0.3" }

# Optional Dependencies
futures = {version = "0.3.12", optional = true }
Expand All @@ -42,7 +42,7 @@ ipnet = { version = "2.3", optional = true }
winapi = "0.3.9"

[dev-dependencies]
diem-types = { path = "../../types", version = "0.0.2", features = ["fuzzing"] }
diem-types = { path = "../../types", version = "0.0.3", features = ["fuzzing"] }
diem-workspace-hack = { path = "../../common/workspace-hack" }
proptest = "1.0.0"
tempfile = "3.2.0"
6 changes: 3 additions & 3 deletions sdk/transaction-builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diem-transaction-builder"
version = "0.0.2"
version = "0.0.3"
authors = ["Diem Association <[email protected]>"]
description = "Generated transaction builders"
repository = "https://github.com/diem/diem"
Expand All @@ -15,8 +15,8 @@ bcs = "0.1.2"
once_cell = "1.7.2"
serde = { version = "1.0.124", features = ["derive"] }

move-core-types = { path = "../../language/move-core/types", version = "0.0.2" }
diem-types = { path = "../../types", version = "0.0.2" }
move-core-types = { path = "../../language/move-core/types", version = "0.0.3" }
diem-types = { path = "../../types", version = "0.0.3" }

proptest = { version = "1.0.0", optional = true }
proptest-derive = { version = "0.3.0", optional = true }
Expand Down
8 changes: 4 additions & 4 deletions types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diem-types"
version = "0.0.2"
version = "0.0.3"
authors = ["Diem Association <[email protected]>"]
description = "Diem types"
repository = "https://github.com/diem/diem"
Expand Down Expand Up @@ -28,9 +28,9 @@ thiserror = "1.0.24"
tiny-keccak = { version = "2.0.2", default-features = false, features = ["sha3"] }

bcs = "0.1.2"
diem-crypto = { path = "../crypto/crypto", version = "0.0.2" }
diem-crypto-derive = { path = "../crypto/crypto-derive", version = "0.0.2" }
move-core-types = { path = "../language/move-core/types", version = "0.0.2" }
diem-crypto = { path = "../crypto/crypto", version = "0.0.3" }
diem-crypto-derive = { path = "../crypto/crypto-derive", version = "0.0.3" }
move-core-types = { path = "../language/move-core/types", version = "0.0.3" }

[dev-dependencies]
regex = "1.4.3"
Expand Down

0 comments on commit 99524bb

Please sign in to comment.