-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update comment in aptos_containers * Update: update after reviewed and rewrite README.md . * Update: Test coverage ci * Update: Test coverage ci part 2 * Update: Test coverage ci part 3 * Update: final commit * Update: test ci publish crates.io * Update: test ci publish crates.io part 2 * Update: test ci publish crates.io part 3 * Update: test ci publish crates.io part 3 * fix: remove publish crates in ci.yaml
- Loading branch information
1 parent
b96434f
commit 9841f42
Showing
9 changed files
with
662 additions
and
136 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,26 +1,29 @@ | ||
[package] | ||
description = "Test container for Apotos Node" | ||
edition = "2021" | ||
license = "MIT" | ||
name = "aptos-testcontainer" | ||
version = "0.1.0" | ||
repository = "https://github.com/sota-zk-labs/aptos-testcontainer.git" | ||
version = "0.0.5" | ||
|
||
[dependencies] | ||
anyhow = { version = "1.0.71" } | ||
base64 = "0.22.1" | ||
config = { version = "0.14.0" } | ||
ed25519-dalek = { version = "2.1.1" } | ||
hex = "0.4.3" | ||
log = "0.4.22" | ||
rand = "0.8.5" | ||
regex = "1.10.6" | ||
serde = { version = "1.0" } | ||
testcontainers = { version = "0.21.1" } | ||
thiserror = { version = "1.0.63" } | ||
tiny-keccak = { version = "2.0.2", features = ["sha3"] } | ||
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "macros"] } | ||
walkdir = "2.3.3" | ||
|
||
[dev-dependencies] | ||
ed25519-dalek = { version = "2.1.1" } | ||
hex = "0.4.3" | ||
test-log = { version = "0.2.16" } | ||
tiny-keccak = { version = "2.0.2", features = ["sha3"] } | ||
|
||
[features] | ||
testing = [] |
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.