Skip to content

Commit

Permalink
version 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet committed May 30, 2021
1 parent f12aaf4 commit 7443185
Show file tree
Hide file tree
Showing 17 changed files with 94 additions and 95 deletions.
57 changes: 28 additions & 29 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore"
repository = "https://github.com/appaquet/exocore"
version = "0.1.5"
version = "0.1.6"

[features]
default = [
Expand Down Expand Up @@ -40,17 +40,17 @@ transport-p2p-web = ["exocore-transport/p2p-web"]

[dependencies]
anyhow = {version = "1.0", optional = true}
exocore-apps-sdk = {version = "0.1.5", path = "./apps/sdk", default-features = false, optional = true}
exocore-chain = {version = "0.1.5", path = "./chain", default-features = false, optional = true}
exocore-core = {version = "0.1.5", path = "./core", default-features = false, optional = true}
exocore-discovery = {version = "0.1.5", path = "./discovery", default-features = false, optional = true}
exocore-protos = {version = "0.1.5", path = "./protos", default-features = false, optional = true}
exocore-store = {version = "0.1.5", path = "./store", default-features = false, optional = true}
exocore-transport = {version = "0.1.5", path = "./transport", default-features = false, optional = true}
exocore-apps-sdk = {version = "0.1.6", path = "./apps/sdk", default-features = false, optional = true}
exocore-chain = {version = "0.1.6", path = "./chain", default-features = false, optional = true}
exocore-core = {version = "0.1.6", path = "./core", default-features = false, optional = true}
exocore-discovery = {version = "0.1.6", path = "./discovery", default-features = false, optional = true}
exocore-protos = {version = "0.1.6", path = "./protos", default-features = false, optional = true}
exocore-store = {version = "0.1.6", path = "./store", default-features = false, optional = true}
exocore-transport = {version = "0.1.6", path = "./transport", default-features = false, optional = true}
log = "0.4"

[dev-dependencies]
exocore-core = {version = "0.1.5", path = "./core", features = ["tests-utils"]}
exocore-core = {version = "0.1.6", path = "./core", features = ["tests-utils"]}

[workspace]
exclude = [
Expand Down
2 changes: 1 addition & 1 deletion Exocore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'Exocore'
spec.version = '0.1.5'
spec.version = '0.1.6'
spec.license = { :type => 'Apache-2.0' }
spec.summary = 'Distributed applications framework'
spec.authors = { 'Andre-Philippe Paquet' => '[email protected]' }
Expand Down
10 changes: 5 additions & 5 deletions apps/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore-apps-host"
repository = "https://github.com/appaquet/exocore"
version = "0.1.5"
version = "0.1.6"

[features]
default = []

[dependencies]
anyhow = "1.0"
exocore-core = {version = "0.1.5", path = "../../core"}
exocore-protos = {version = "0.1.5", path = "../../protos"}
exocore-store = {version = "0.1.5", path = "../../store"}
exocore-core = {version = "0.1.6", path = "../../core"}
exocore-protos = {version = "0.1.6", path = "../../protos"}
exocore-store = {version = "0.1.6", path = "../../store"}
futures = "0.3"
log = "0.4"
reqwest = {version = "0.11", default-features = false, features = ["rustls-tls"]}
Expand All @@ -26,4 +26,4 @@ thiserror = "1.0"
wasmtime = "0.27.0"

[dev-dependencies]
exocore-core = {version = "0.1.5", path = "../../core", features = ["tests-utils"]}
exocore-core = {version = "0.1.6", path = "../../core", features = ["tests-utils"]}
2 changes: 1 addition & 1 deletion apps/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore-apps-macros"
repository = "https://github.com/appaquet/exocore"
version = "0.1.5"
version = "0.1.6"

[lib]
proc-macro = true
Expand Down
8 changes: 4 additions & 4 deletions apps/sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore-apps-sdk"
repository = "https://github.com/appaquet/exocore"
version = "0.1.5"
version = "0.1.6"

[dependencies]
anyhow = "1.0"
exocore-apps-macros = {version = "0.1.5", path = "../macros"}
exocore-protos = {version = "0.1.5", path = "../../protos"}
exocore-store = {version = "0.1.5", path = "../../store", default-features = false}
exocore-apps-macros = {version = "0.1.6", path = "../macros"}
exocore-protos = {version = "0.1.6", path = "../../protos"}
exocore-store = {version = "0.1.6", path = "../../store", default-features = false}
futures = "0.3"
lazy_static = "1.4"
log = "0.4"
Expand Down
12 changes: 6 additions & 6 deletions chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore-chain"
repository = "https://github.com/appaquet/exocore"
version = "0.1.5"
version = "0.1.6"

[features]
default = ["engine", "directory-chain", "memory-pending"]
Expand All @@ -20,9 +20,9 @@ tests-utils = ["engine", "tempfile", "directory-chain", "memory-pending", "exoco
[dependencies]
anyhow = "1.0"
byteorder = "1.3"
exocore-core = {version = "0.1.5", path = "../core"}
exocore-protos = {version = "0.1.5", path = "../protos"}
exocore-transport = {version = "0.1.5", path = "../transport", default-features = false}
exocore-core = {version = "0.1.6", path = "../core"}
exocore-protos = {version = "0.1.6", path = "../protos"}
exocore-transport = {version = "0.1.6", path = "../transport", default-features = false}
futures = "0.3"
itertools = "0.10"
log = "0.4"
Expand All @@ -38,8 +38,8 @@ memmap2 = {version = "0.2", optional = true}
tempfile = {version = "3.2", optional = true}

[dev-dependencies]
exocore-core = {version = "0.1.5", path = "../core", features = ["tests-utils"]}
exocore-transport = {version = "0.1.5", path = "../transport", features = ["tests-utils"]}
exocore-core = {version = "0.1.6", path = "../core", features = ["tests-utils"]}
exocore-transport = {version = "0.1.6", path = "../transport", features = ["tests-utils"]}
tempfile = "3.2"
tokio = {version = "1.6", features = ["macros"], default-features = false}

Expand Down
8 changes: 4 additions & 4 deletions clients/android/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
authors = ["Andre-Philippe Paquet <[email protected]>"]
edition = "2018"
name = "exocore-client-android"
version = "0.1.5"
version = "0.1.6"

[lib]
crate-type = ["cdylib"]

[dependencies]
anyhow = "1.0"
exocore-core = {version = "0.1.5", path = "../../core", features = ["runtime", "logger"]}
exocore-store = {version = "0.1.5", path = "../../store"}
exocore-transport = {version = "0.1.5", path = "../../transport", features = ["p2p-full"]}
exocore-core = {version = "0.1.6", path = "../../core", features = ["runtime", "logger"]}
exocore-store = {version = "0.1.6", path = "../../store"}
exocore-transport = {version = "0.1.6", path = "../../transport", features = ["p2p-full"]}
thiserror = "1.0"
12 changes: 6 additions & 6 deletions clients/c/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
authors = ["Andre-Philippe Paquet <[email protected]>"]
edition = "2018"
name = "exocore-client-c"
version = "0.1.5"
version = "0.1.6"

[lib]
crate-type = ["staticlib", "cdylib"]
name = "exocore"

[dependencies]
exocore-core = {version = "0.1.5", path = "../../core", features = ["runtime", "logger"]}
exocore-discovery = {version = "0.1.5", path = "../../discovery", default-features = false}
exocore-protos = {version = "0.1.5", path = "../../protos"}
exocore-store = {version = "0.1.5", path = "../../store", default-features = false, features = ["remote"]}
exocore-transport = {version = "0.1.5", path = "../../transport", features = ["p2p-full"]}
exocore-core = {version = "0.1.6", path = "../../core", features = ["runtime", "logger"]}
exocore-discovery = {version = "0.1.6", path = "../../discovery", default-features = false}
exocore-protos = {version = "0.1.6", path = "../../protos"}
exocore-store = {version = "0.1.6", path = "../../store", default-features = false, features = ["remote"]}
exocore-transport = {version = "0.1.6", path = "../../transport", features = ["p2p-full"]}
weak-table = "0.3"
futures = "0.3"
libc = "0.2"
Expand Down
Loading

0 comments on commit 7443185

Please sign in to comment.