Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: change the genesis and config generator #18

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ Cargo.lock
**/*.rs.bk

history.txt

/.vscode/
15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-trait = "0.1.57"
async-trait = "0.1"
axon-protocol = { git = "https://github.com/axonweb3/axon", package = "axon-protocol", tag = "v0.1.0-beta.1" }

axon-protocol = { git = "https://github.com/axonweb3/axon", package = "axon-protocol", tag = "v0.1.0-alpha.1" }
axon-tools = "0.1"

ckb-crypto = { version = "0.106", features = ["secp"] }
ckb-fixed-hash-core = "0.106"
ckb-hash = "0.106"
ckb-jsonrpc-types = "0.106"
ckb-sdk = "~2.4"
ckb-sdk = "2.5"
ckb-types = "0.106"

blake2b-rs = "0.2"
Expand All @@ -23,19 +24,19 @@ ophelia-blst = "0.3"
ophelia-secp256k1 = "0.3"
rand = "0.7"
secp256k1 = { version = "0.24", features = ["recovery"] }
tentacle-secio = "0.5"
tentacle-secio = "0.6"

contract-address = "0.6"
ethers-core = "1.0"
ethers-core = "2.0"

clap = { version = "3.1", features = ["cargo", "derive"] }
clap = { version = "4.3", features = ["cargo", "derive"] }
colored = "2.0"
log = { version = "0.4", features = ["std"] }
rustyline = { version = "9.1", features = ["case_insensitive_history_search"] }
simplelog = "0.12"

molecule = "0.7.2"
serde = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }

crossbeam-utils = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.64.0
1.70
2 changes: 1 addition & 1 deletion src/apm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ pub struct Apm {}

#[async_trait]
impl SubCommand for Apm {
fn get_command(&self) -> Command<'static> {
fn get_command(&self) -> Command {
ApmActions::augment_subcommands(Command::new("apm"))
.about("Manage APM (Application Performance Management)")
}
Expand Down
Loading