-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
26 lines (24 loc) · 804 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "soli"
version = "0.1.0"
edition = "2021"
description = "Solidity REPL"
license = "MIT"
documentation = "https://docs.rs/crates/soli/latest"
homepage = "https://github.com/jpopesculian/soli"
repository = "https://github.com/jpopesculian/soli"
[dependencies]
ansi_term = "0.12.1"
ethabi = "17.1.0"
ethers-core = { version = "0.17.0", git = "https://github.com/gakonst/ethers-rs" }
ethers-solc = { version = "0.17.0", git = "https://github.com/gakonst/ethers-rs" }
hex = "0.4.3"
primitive-types = "0.11.1"
revm = "1.7.0"
rustyline = { version = "10.0.0", default-features = false, features = ["custom-bindings"] }
semver = "1.0.13"
serde_json = "1.0.83"
similar = "2.2.0"
solang-parser = "=0.1.17"
[patch.crates-io]
solang-parser = { git = "https://github.com/hyperledger-labs/solang" }