Skip to content

Commit

Permalink
bump crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
haydnv committed Apr 15, 2022
1 parent e17325b commit df18718
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 36 deletions.
16 changes: 8 additions & 8 deletions host/Cargo.toml
Expand Up @@ -44,14 +44,14 @@ 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" }
tc-btree = "0.5"
tc-error = "0.5"
tc-math = { version = "0.3", optional = true }
tc-tensor = { version = "0.5", optional = true }
tc-transact = { version = "0.12", features = ["tensor"] }
tc-value = "0.5"
tc-table = "0.4"
tcgeneric = "0.4"
tokio = { version = "1.17", features = ["macros", "rt-multi-thread", "signal"] }
tokio-util = { version = "0.7", features = ["io"] }
uuid = "0.8"
Expand Down
8 changes: 4 additions & 4 deletions host/btree/Cargo.toml
Expand Up @@ -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.5"
tc-transact = "0.12"
tc-value = "0.5"
tcgeneric = "0.4"
uuid = { version = "0.8", features=["v4"] }
2 changes: 1 addition & 1 deletion host/generic/Cargo.toml
Expand Up @@ -20,5 +20,5 @@ hr-id = { version = "0.1", features=["all"] }
safecast = "0.1"
serde = { version = "1.0", features = [] }
sha2 = "0.10"
tc-error = { path = "../error" }
tc-error = "0.5"
uuid = "0.8"
14 changes: 7 additions & 7 deletions host/math/Cargo.toml
Expand Up @@ -13,10 +13,10 @@ categories = ["algorithms", "concurrency", "mathematics", "science"]

[dependencies]
log = { version = "0.4", features = ["release_max_level_warn"] }
tc-btree = "0.4"
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.5"
tc-error = "0.5"
tc-transact = { version = "0.12", features = ["tensor"] }
tc-value = "0.5"
tc-table = "0.4"
tc-tensor = "0.5"
tcgeneric = "0.4"
10 changes: 5 additions & 5 deletions host/table/Cargo.toml
Expand Up @@ -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.5"
tc-error = "0.5"
tc-transact = "0.12"
tc-value = "0.5"
tcgeneric = "0.4"
12 changes: 6 additions & 6 deletions host/tensor/Cargo.toml
Expand Up @@ -23,9 +23,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.5"
tc-error = "0.5"
tc-transact = { version = "0.12", features = ["tensor"] }
tc-value = "0.5"
tc-table = "0.4"
tcgeneric = "0.4"
6 changes: 3 additions & 3 deletions host/transact/Cargo.toml
Expand Up @@ -28,6 +28,6 @@ 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" }
tcgeneric = "0.4"
tc-error = "0.5"
tc-value = "0.5"
4 changes: 2 additions & 2 deletions host/value/Cargo.toml
Expand Up @@ -28,6 +28,6 @@ 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.4"
tc-error = "0.5"
uuid = "0.8"

0 comments on commit df18718

Please sign in to comment.