-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/support for dms node dashboard (#575)
* feat: add doc store * feat: add index * test: add index test case * fix: update the error report * feat: upgrade version * fix: revert the key and case
- Loading branch information
Showing
12 changed files
with
36 additions
and
35 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
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 = "db3-base" | ||
version = "0.1.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["jack wang <[email protected]>"] | ||
description = "base module of db3" | ||
|
@@ -12,8 +12,8 @@ keywords = ["database", "web3", "db3"] | |
ethereum-types = { version = "0.14.0", default-features = false } | ||
hex = "0.4.3" | ||
fastcrypto="0.1.3" | ||
db3-proto={path="../proto", version="0.1.0"} | ||
db3-error={path="../error", version="0.1.0"} | ||
db3-proto={path="../proto"} | ||
db3-error={path="../error"} | ||
rand = "0.8.5" | ||
bson = "2.5.0" | ||
serde_json = {workspace=true} | ||
|
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 = "db3-cmd" | ||
version = "0.1.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["jack wang <[email protected]>"] | ||
description = "cmd module of db3" | ||
|
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 = "db3-crypto" | ||
version = "0.1.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["jack wang <[email protected]>"] | ||
description = "crypto module of db3" | ||
|
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
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 = "db3-proto" | ||
version = "0.1.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["jack wang <[email protected]>"] | ||
description = "proto module of db3" | ||
|
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 = "db3-sdk" | ||
version = "0.1.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["jack wang <[email protected]>"] | ||
description = "sdk module of db3" | ||
|
@@ -10,9 +10,9 @@ keywords = ["database", "web3", "db3"] | |
|
||
[dependencies] | ||
ethers = { workspace = true } | ||
db3-proto={path="../proto", version="0.1.0"} | ||
db3-error={path="../error", version="0.1.0"} | ||
db3-crypto={path="../crypto", version="0.1.0"} | ||
db3-proto={path="../proto"} | ||
db3-error={path="../error"} | ||
db3-crypto={path="../crypto"} | ||
bytes = { version = "1.0", default-features = false } | ||
tokio = { version = "1.17.0", features = ["full"] } | ||
tonic = { workspace=true, features = ["tls-roots"]} | ||
|
@@ -24,8 +24,8 @@ rand = "0.8.5" | |
serde_json = {workspace=true} | ||
hex = "0.4.3" | ||
[dev-dependencies] | ||
db3-base={path="../base", version="0.1.0"} | ||
db3-cmd={path="../cmd", version="0.1.0"} | ||
db3-base={path="../base"} | ||
db3-cmd={path="../cmd" } | ||
criterion = { version = "0.3.4", default-features = false,features = ["async_futures", "async_tokio"]} | ||
[[bench]] | ||
name = "sdk_benchmark" | ||
|
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 = "db3-storage" | ||
version = "0.1.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["jack wang <[email protected]>"] | ||
description = "storage module of db3" | ||
|
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