Skip to content

Commit

Permalink
bump internal crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
haydnv committed May 30, 2022
1 parent 2dde587 commit 9288769
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 43 deletions.
18 changes: 9 additions & 9 deletions host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ serde_json = { version = "1.0" }
sha2 = "0.10"
structopt = "0.3"
tbon = "~0.3.5"
tc-btree = { path = "btree" }
tc-error = { path = "error" }
tc-math = { path = "math", optional = true }
tc-tensor = { path = "tensor", optional = true }
tc-transact = { path = "transact", features = ["tensor"] }
tc-value = { path = "value" }
tc-table = { path = "table" }
tcgeneric = { path = "generic" }
tokio = { version = "1.17", features = ["rt-multi-thread", "signal"] }
tc-btree = "0.6"
tc-error = "0.6"
tc-math = { version = "0.4", optional = true }
tc-tensor = { version = "0.6", optional = true }
tc-transact = { version = "0.13", features = ["tensor"] }
tc-value = "0.6"
tc-table = "0.5"
tcgeneric = "0.5"
tokio = { version = "1.18", features = ["rt-multi-thread", "signal"] }
tokio-util = { version = "0.7", features = ["io"] }
uuid = "1.1"
url = { version = "2.2" }
10 changes: 5 additions & 5 deletions host/btree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tc-btree"
version = "0.7.0"
version = "0.6.0"
authors = ["[email protected]"]
edition = "2018"
description = "TinyChain's BTree collection type"
Expand All @@ -19,8 +19,8 @@ futures = "0.3"
log = { version = "0.4", features = ["release_max_level_warn"] }
num_cpus = "1.13"
safecast = "0.1"
tc-error = { path = "../error" }
tc-transact = { path = "../transact" }
tc-value = { path = "../value" }
tcgeneric = { path = "../generic" }
tc-error = "0.6"
tc-transact = "0.13"
tc-value = "0.6"
tcgeneric = "0.5"
uuid = { version = "1.1", features=["v4"] }
2 changes: 1 addition & 1 deletion host/generic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ hr-id = { version = "0.2", features=["all"] }
safecast = "0.1"
serde = { version = "1.0", features = [] }
sha2 = "0.10"
tc-error = { path = "../error" }
tc-error = "0.6"
uuid = "1.1"
14 changes: 7 additions & 7 deletions host/math/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ categories = ["algorithms", "concurrency", "mathematics", "science"]

[dependencies]
log = { version = "0.4", features = ["release_max_level_warn"] }
tc-btree = { path = "../btree" }
tc-error = { path = "../error" }
tc-transact = { path = "../transact", features = ["tensor"] }
tc-value = { path = "../value" }
tc-table = { path = "../table"}
tc-tensor = { path = "../tensor" }
tcgeneric = { path = "../generic" }
tc-btree = "0.6"
tc-error = "0.6"
tc-transact = { version = "0.13", features = ["tensor"] }
tc-value = "0.6"
tc-table = "0.5"
tc-tensor = "0.6"
tcgeneric = "0.5"
12 changes: 6 additions & 6 deletions host/table/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tc-table"
version = "0.6.0"
version = "0.5.0"
authors = ["[email protected]"]
edition = "2018"
description = "TinyChain's Table collection type"
Expand All @@ -19,8 +19,8 @@ futures = "0.3"
log = { version = "0.4", features = ["release_max_level_warn"] }
num_cpus = "1.13"
safecast = "0.1"
tc-btree = { path = "../btree" }
tc-error = { path = "../error" }
tc-transact = { path = "../transact" }
tc-value = { path = "../value" }
tcgeneric = { path = "../generic" }
tc-btree = "0.6"
tc-error = "0.6"
tc-transact = "0.13"
tc-value = "0.6"
tcgeneric = "0.5"
12 changes: 6 additions & 6 deletions host/tensor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ num_cpus = "1.13"
pin-project = "1.0"
safecast = "~0.1.2"
strided = "~0.2.9"
tc-btree = { path = "../btree" }
tc-error = { path = "../error" }
tc-transact = { path = "../transact", features = ["tensor"] }
tc-value = { path = "../value" }
tc-table = { path = "../table" }
tcgeneric = { path = "../generic" }
tc-btree = "0.6"
tc-error = "0.6"
tc-transact = { version = "0.13", features = ["tensor"] }
tc-value = "0.6"
tc-table = "0.5"
tcgeneric = "0.5"
10 changes: 5 additions & 5 deletions host/transact/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tc-transact"
version = "0.14.0"
version = "0.13.0"
authors = ["[email protected]"]
edition = "2018"
description = "Traits and locking utilities for a TinyChain transaction."
Expand Down Expand Up @@ -28,7 +28,7 @@ rand = "0.8"
safecast = "~0.1.2"
sha2 = "0.10"
tbon = { version = "~0.3.4", features = ["tokio-io"] }
tcgeneric = { path = "../generic" }
tc-error = { path = "../error" }
tc-value = { path = "../value" }
tokio = { version = "1.17", features = ["sync"] }
tcgeneric = "0.5"
tc-error = "0.6"
tc-value = "0.6"
tokio = { version = "1.18", features = ["sync"] }
8 changes: 4 additions & 4 deletions host/value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tc-value"
version = "0.7.0"
version = "0.6.0"
authors = ["[email protected]"]
edition = "2018"
description = "TinyChain's representation of a value which can be collated and stored. Unstable."
Expand All @@ -20,14 +20,14 @@ collate = "~0.2.3"
destream = "0.5"
email-address-parser = "1.0"
futures = "0.3"
handlebars = "4.1"
handlebars = "4.3"
hex = "0.4"
log = { version = "0.4", features = [] }
number-general = { version = "0.8", features=["hash", "serde", "stream"] }
safecast = "0.1"
serde = { version = "1.0", features = [] }
serde_json = { version = "1.0", features = [] }
sha2 = "0.10"
tcgeneric = { path = "../generic" }
tc-error = { path = "../error" }
tcgeneric = "0.5"
tc-error = "0.6"
uuid = "1.1"

0 comments on commit 9288769

Please sign in to comment.