Skip to content

Commit

Permalink
Releasing 0.0.2 versions on github
Browse files Browse the repository at this point in the history
  • Loading branch information
wigy-opensource-developer committed Jul 28, 2020
1 parent 64e0659 commit 61cd3f7
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 22 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ members = [
"morpheus-sdk",
]

# [patch.crates-io]
# Experiment for optimizing WASM and FFI binary sizes
[profile.release]
lto = true
opt-level = 's'

[patch.crates-io]
# iop-keyvault = { path="../keyvault-rs/keyvault" }
# iop-keyvault-wasm = { path="../keyvault-rs/keyvault-wasm" }
iop-morpheus-core = { path="morpheus-core" }

# [patch.crates-io]
# iop-keyvault = { git="https://github.com/Internet-of-People/keyvault-rust", branch="develop" }
Expand Down
4 changes: 2 additions & 2 deletions morpheus-core-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iop-morpheus-core-ffi"
version = "0.0.1"
version = "0.0.2"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
edition = "2018"

Expand All @@ -13,7 +13,7 @@ crate-type = ["rlib", "cdylib"]
[dependencies]
failure = "*"
iop-keyvault = "0.0.2"
iop-morpheus-core = { path = "../morpheus-core" }
iop-morpheus-core = "0.0.2"
log = "*"
serde_json = { version = "*", features = ["preserve_order"] }
serde_repr = "*"
Expand Down
10 changes: 2 additions & 8 deletions morpheus-core-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iop-morpheus-core-wasm"
version = "0.0.1"
version = "0.0.2"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
edition = "2018"

Expand All @@ -13,16 +13,10 @@ crate-type = ["cdylib", "rlib"]
failure = "*"
iop-keyvault = "0.0.2"
iop-keyvault-wasm = "0.0.2"
iop-morpheus-core = { path = "../morpheus-core" }
iop-morpheus-core = "0.0.2"
js-sys = "*"
log = "*"
serde = "*"
serde_json = "*"
wasm-bindgen = { version = "*", features = ["serde-serialize"] }
wasm-bindgen-futures = "*"


# Further options to experiment with for optimizing Wasm binary sizes
#[profile.release]
#lto = true
#opt-level = 's'
3 changes: 1 addition & 2 deletions morpheus-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iop-morpheus-core"
version = "0.0.1"
version = "0.0.2"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -28,7 +28,6 @@ varint = "*"
[dev-dependencies]
hex = "*"


[target.'cfg(target_os="android")'.dependencies]
jni = { version = "0.17", default-features = false }
android_logger = "0.9"
4 changes: 2 additions & 2 deletions morpheus-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iop-morpheus-sdk"
version = "0.0.1"
version = "0.0.2"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
license = "LGPL-3.0-or-later"
edition = "2018"
Expand All @@ -17,7 +17,7 @@ failure = "*"
futures = "*"
hyper = "*"
iop-keyvault = "0.0.2"
iop-morpheus-core = { path = "../morpheus-core" }
iop-morpheus-core = "0.0.2"
log = "*"
multihash = "*"
rand = "*"
Expand Down

0 comments on commit 61cd3f7

Please sign in to comment.