Skip to content

Commit

Permalink
PR before fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ManojJiSharma committed Jun 5, 2024
1 parent 6282359 commit 9099e28
Show file tree
Hide file tree
Showing 6 changed files with 541 additions and 78 deletions.
53 changes: 31 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ rosetta-tx-ethereum = { path = "chains/ethereum/tx" }
rosetta-ethereum-types = { path = "chains/ethereum/types", default-features = false }
rosetta-config-polkadot = { path = "chains/polkadot/config" }
rosetta-server-polkadot = { path = "chains/polkadot/server" }
rosetta-humanode = { path = "chains/humanode" }
rosetta-tx-polkadot = { path = "chains/polkadot/tx" }
rosetta-client = { path = "rosetta-client" }
rosetta-core = { path = "rosetta-core" }
Expand Down
18 changes: 16 additions & 2 deletions chains/humanode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,38 @@
[package]
name = "humanode"
name = "rosetta-humanode"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/analog-labs/chain-connectors"
description = "humanode rosetta."

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
alloy-sol-types = { version = "0.6" }
anyhow = "1.0"
async-trait = "0.1"
ethers = { version = "2.0", default-features = true, features = ["abigen", "rustls", "ws"] }
ethers-solc = "2.0"
futures-util = "0.3"
hex-literal = "0.4"
parity-scale-codec = { workspace = true, features = ["derive"] }
rand_core = { version = "0.6", features = ["getrandom"] }
rosetta-client.workspace = true
rosetta-config-ethereum.workspace = true
rosetta-config-polkadot.workspace = true
rosetta-core.workspace = true
rosetta-docker = { workspace = true, features = ["tests"] }
rosetta-server = { workspace = true, features = ["ws", "webpki-tls"] }
rosetta-server-ethereum.workspace = true
rosetta-server-polkadot.workspace = true
serde.workspace = true
serde_json.workspace = true
sha3 = "0.10"
sp-keyring.workspace = true
subxt = { workspace = true, features = ["substrate-compat"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
tracing = "0.1.40"
url = "2.4"

[dev-dependencies]
rosetta-docker = { workspace = true, features = ["tests"] }
Loading

0 comments on commit 9099e28

Please sign in to comment.