forked from alloy-rs/svm-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (42 loc) · 1020 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "svm-rs"
version = "0.1.2"
edition = "2018"
authors = ["Rohit Narurkar <[email protected]>"]
license = "MIT OR Apache-2.0"
description = """
Solidity-Compiler (Solc) Version Manager.
"""
readme = "README.md"
repository = "https://github.com/roynalnaruto/svm-rs"
homepage = "https://github.com/roynalnaruto/svm-rs"
[lib]
name = "svm_lib"
path = "src/lib.rs"
[[bin]]
name = "solc"
path = "src/solc/main.rs"
[[bin]]
name = "svm"
path = "src/svm/main.rs"
[dependencies]
anyhow = "1.0.43"
cfg-if = "1.0.0"
console = "0.14.1"
dialoguer = "0.8.0"
home = "0.5.3"
indicatif = "0.16.2"
itertools = "0.10.1"
once_cell = "1.8.0"
rand = "0.8.4"
reqwest = { version = "0.11.4", features = [ "json" ] }
semver = "1.0.4"
serde = { version = "1.0.130", features = [ "derive" ] }
serde_json = "1.0.59"
structopt = { version = "0.3", default-features = false }
tempfile = "3.2.0"
thiserror = "1.0.29"
tokio = { version = "1.11.0", features = [ "full" ] }
url = "2.2.2"
[build-dependencies]
home = "0.5.3"