forked from argotorg/fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (18 loc) · 716 Bytes
/
Copy pathCargo.toml
File metadata and controls
20 lines (18 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
categories = ["cryptography::cryptocurrencies", "command-line-utilities", "development-tools"]
description = "An implementation of the Fe smart contract language"
edition = "2018"
keywords = ["ethereum", "fe", "yul", "smart", "contract", "compiler"]
license = "GPL-3.0-or-later"
name = "fe"
readme = "README.md"
repository = "https://github.com/ethereum/fe"
version = "0.6.1-alpha"
[features]
solc-backend = ["fe-driver/solc-backend"]
[dependencies]
clap = "2.33.3"
fe-common = {path = "../common", version = "^0.6.1-alpha"}
fe-driver = {path = "../driver", version = "^0.6.1-alpha"}
fe-parser = {path = "../parser", version = "^0.6.1-alpha"}