-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0d00ba
commit 3854735
Showing
15 changed files
with
613 additions
and
1,142 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,58 +1,59 @@ | ||
[package] | ||
name = "tofnd" | ||
version = "0.11.0" | ||
version = "1.0.0" | ||
authors = ["Gus Gutoski <[email protected]>", "Stelios Daveas <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
||
[dependencies] | ||
tonic = "0.6" | ||
tofn = { git = "https://github.com/axelarnetwork/tofn", branch = "update-deps"} | ||
|
||
# logging | ||
log = {version = "0.4",default-features = false } | ||
tracing = {version = "0.1", default-features = false} | ||
tracing-subscriber= {version = "0.3", features = ["json", "env-filter"]} | ||
atty = {version = "0.2", default-features = false} | ||
log = { version = "0.4",default-features = false } | ||
tracing = { version = "0.1", default-features = false } | ||
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] } | ||
atty = { version = "0.2", default-features = false } | ||
|
||
# config | ||
clap = {version = "3.2", default-features = false, features = ["std", "cargo", "env"]} | ||
# CLI args | ||
clap = { version = "3.2", default-features = false, features = ["std", "cargo", "env"] } | ||
|
||
# sled dependency | ||
sled = {version = "0.34", default-features = false} | ||
# kv store | ||
sled = { version = "0.34", default-features = false } | ||
serde = { version = "1.0", features = ["derive"], default-features = false } | ||
# sled encryption | ||
chacha20poly1305 = { version = "0.9", features = ["alloc"], default-features = false } | ||
rand = {version = "0.8", default-features = false } | ||
dirs = { version = "5.0", default-features = false } | ||
|
||
rpassword = { version = "5.0", default-features = false } | ||
# kv store encryption | ||
chacha20poly1305 = { version = "0.10", features = ["alloc"], default-features = false } | ||
rand = { version = "0.8", default-features = false } | ||
rpassword = { version = "7.3", default-features = false } | ||
scrypt = { version = "0.11", default-features = false, features = ["std"] } | ||
|
||
# tonic dependencies | ||
prost = {version = "0.9", default-features = false} | ||
tokio = { version = "1.8", features = ["rt-multi-thread", "macros", "signal", "net", "sync"], default-features = false } | ||
tokio-stream = {version = "0.1.7", features = ["net"], default-features = false} | ||
futures-util = {version = "0.3", default-features = false} | ||
# gRPC server | ||
tonic = { version = "0.6" } # ensure tonic-build version matches this | ||
prost = { version = "0.9" } | ||
|
||
# async runtime | ||
tokio = { version = "1.38", features = ["rt-multi-thread", "macros", "signal", "net", "sync"], default-features = false } | ||
tokio-stream = { version = "0.1.15", features = ["net"], default-features = false } | ||
futures-util = { version = "0.3", default-features = false } | ||
|
||
# mnemonic | ||
tiny-bip39 = { version = "0.8.2", default-features = false} | ||
tiny-bip39 = { version = "1.0.0", default-features = false} | ||
zeroize = { version = "1.8", features = ["zeroize_derive"], default-features = false} | ||
|
||
#error handling | ||
# error handling | ||
thiserror = { version = "1.0", default-features = false } | ||
anyhow = { version = "1.0", default-features = false } | ||
|
||
dirs = { version = "4.0", default-features = false } | ||
|
||
[build-dependencies] | ||
tonic-build = {version = "0.6"} | ||
tonic-build = { version = "0.6" } | ||
|
||
[dev-dependencies] | ||
lazy_static = { version = "1.4", default-features = false} | ||
lazy_static = { version = "1.5", default-features = false} | ||
# enable logging for tests | ||
tracing-test = {version = "0.2", default-features = false} | ||
tracing-test = { version = "0.2", default-features = false } | ||
|
||
testdir = {version = "0.4", default-features = false} | ||
testdir = { version = "0.9", default-features = false } | ||
|
||
# Don't abort in case there is a panic to clean up data | ||
[profile.dev] | ||
|
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
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
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