-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
26 lines (22 loc) · 866 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 = "xp-compiler"
version = "0.1.0"
authors = ["Dmitry Brook <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
move-compiler = { git = "https://github.com/xp-network/move-compiler", default-features = false }
solidity-compiler = { git = "https://github.com/xp-network/solidity-compiler", default-features = false }
evm-asm = { git = "https://github.com/xp-network/evm-asm" }
move-binary-format = { git = "https://github.com/xp-network/diem", branch = "main" }
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
hex = "0.4"
bigint = "4.4.3"
[features]
default = [ "diem_coin_xdx", "test_generated" ]
diem_coin_xdx = []
test_generated = [ "move-compiler/test_generated", "solidity-compiler/test_generated" ]
[[bin]]
name = "xp-compiler-test"