Skip to content

Commit

Permalink
feat(cast): support websockets
Browse files Browse the repository at this point in the history
  • Loading branch information
bernard-wagner committed Aug 16, 2023
1 parent d154507 commit b83d4ce
Show file tree
Hide file tree
Showing 10 changed files with 556 additions and 59 deletions.
13 changes: 2 additions & 11 deletions Cargo.lock

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

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,32 +112,32 @@ foundry-macros = { path = "crates/macros" }
ui = { path = "crates/ui" }
foundry-utils = { path = "crates/utils" }

ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-addressbook = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-contract = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-contract-abigen = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-providers = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-signers = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-middleware = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-etherscan = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-solc = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers-addressbook = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers-contract = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers-contract-abigen = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers-providers = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers-signers = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers-middleware = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers-etherscan = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
#ethers-solc = { git = "https://github.com/gakonst/ethers-rs", default-features = false }

chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
hex = { package = "const-hex", version = "1.6", features = ["hex"] }
solang-parser = "=0.3.1"

#[patch."https://github.com/gakonst/ethers-rs"]
#ethers = { path = "../ethers-rs/ethers" }
#ethers-addressbook = { path = "../ethers-rs/ethers-addressbook" }
#ethers-contract = { path = "../ethers-rs/ethers-contract" }
#ethers-contract-abigen = { path = "../ethers-rs/ethers-contract/ethers-contract-abigen" }
#ethers-core = { path = "../ethers-rs/ethers-core" }
#ethers-etherscan = { path = "../ethers-rs/ethers-etherscan" }
#ethers-middleware = { path = "../ethers-rs/ethers-middleware" }
#ethers-providers = { path = "../ethers-rs/ethers-providers" }
#ethers-signers = { path = "../ethers-rs/ethers-signers" }
#ethers-solc = { path = "../ethers-rs/ethers-solc" }
ethers = { path = "../ethers-rs/ethers" }
ethers-addressbook = { path = "../ethers-rs/ethers-addressbook" }
ethers-contract = { path = "../ethers-rs/ethers-contract" }
ethers-contract-abigen = { path = "../ethers-rs/ethers-contract/ethers-contract-abigen" }
ethers-core = { path = "../ethers-rs/ethers-core" }
ethers-etherscan = { path = "../ethers-rs/ethers-etherscan" }
ethers-middleware = { path = "../ethers-rs/ethers-middleware" }
ethers-providers = { path = "../ethers-rs/ethers-providers", features = ["ws", "ipc"] }
ethers-signers = { path = "../ethers-rs/ethers-signers" }
ethers-solc = { path = "../ethers-rs/ethers-solc" }

[patch.crates-io]
revm = { git = "https://github.com/bluealloy/revm/", branch = "release/v25" }
Loading

0 comments on commit b83d4ce

Please sign in to comment.