-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump crate version numbers & update host documentation * bump client version * use the as_type macro to generate AsType impls * bump dep versions * bump dep versions
- Loading branch information
Showing
24 changed files
with
62 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = tinychain | ||
version = 0.10.0 | ||
version = 0.11.0 | ||
author = The TinyChain Contributors | ||
author_email = [email protected] | ||
description = A Python client for TinyChain: http://git.io/JtryR | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tinychain" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["[email protected]"] | ||
edition = "2018" | ||
description = "A next-gen database + application server" | ||
|
@@ -44,13 +44,13 @@ serde_json = { version = "1.0" } | |
sha2 = "0.10" | ||
structopt = "0.3" | ||
tbon = "~0.3.5" | ||
tc-btree = { path = "btree" } | ||
tc-btree = "0.7" | ||
tc-error = "0.6" | ||
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" } | ||
tc-math = { version = "0.5", optional = true } | ||
tc-tensor = { version = "0.7", optional = true } | ||
tc-transact = { version = "0.14", features = ["tensor"] } | ||
tc-value = "0.7" | ||
tc-table = "0.6" | ||
tcgeneric = "0.5" | ||
tokio = { version = "1.21", features = ["rt-multi-thread", "signal"] } | ||
tokio-util = { version = "0.7", features = ["io"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tc-math" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["[email protected]"] | ||
edition = "2018" | ||
description = "Mathematical algorithms for TinyChain tensors. Unstable." | ||
|
@@ -13,12 +13,8 @@ categories = ["algorithms", "concurrency", "mathematics", "science"] | |
|
||
[dependencies] | ||
log = { version = "0.4", features = ["release_max_level_warn"] } | ||
# TODO: remove | ||
tc-btree = { path = "../btree" } | ||
tc-error = "0.6" | ||
tc-transact = { path = "../transact", features = ["tensor"] } | ||
tc-value = { path = "../value" } | ||
# TODO: remove | ||
tc-table = { path = "../table" } | ||
tc-tensor = { path = "../tensor" } | ||
tc-transact = { version = "0.14", features = ["tensor"] } | ||
tc-value = "0.7" | ||
tc-tensor = "0.7" | ||
tcgeneric = "0.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.