forked from huff-language/huff-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (29 loc) · 879 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
[package]
name = "huff_cli"
version = "0.3.2"
edition = "2021"
authors = ["refcell", "clabby", "exp.table", "maddiaa"]
readme = "README.md"
repository = "https://github.com/huff-language/huff-rs/"
license = "MIT OR Apache-2.0"
description = """
Huff Language Compiler built in Pure Rust.
"""
keywords = ["huff", "rust", "evm", "bytecode", "compiler"]
[dependencies]
clap = { version = "3.1.18", features = ["derive"] }
huff_core = { path = "../huff_core", version = "0.x.x" }
huff_codegen = { path = "../huff_codegen", version = "0.x.x" }
huff_utils = { path = "../huff_utils", version = "0.x.x" }
huff_tests = { path = "../huff_tests", version = "0.x.x" }
comfy-table = "6.0.0"
tracing = "0.1.34"
ethers-core = "1.0.2"
yansi = "0.5.1"
spinners = "4.1.0"
uuid = { version = "1.1.1", features = ["v4"] }
isatty = "0.1.9"
[[bin]]
name = "huffc"
path = "src/huffc.rs"
doc = false