-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
53 lines (50 loc) · 2.35 KB
/
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
48
49
50
51
52
53
[package]
name = "move-runner"
version = "0.0.8"
authors = ["Ping <[email protected]>"]
edition = "2018"
description = "A Move VM simulator which allows developers to compile and run Move script/module on local computer. "
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/ping-pub/move-runner/"
repository = "https://github.com/ping-pub/move-runner/"
keywords = ["move", "libra", "smart contract"]
categories = ["command-line-utilities"]
include = [
"**/*.rs",
"LICENSE","README.md",
"Cargo.toml",
]
[[bin]]
name = "move"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
serde = { version = "1.0.51", features = ["derive"] }
serde_json = "1.0.51"
include_dir = "0.5.0"
structopt = "0.3.13"
toml = "0.4.5"
rand = "0.6.5"
glob = "0.3.0"
termcolor = "1.1.0"
libra-config = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
stdlib = { git="https://github.com/libra/libra.git", version = "0.1.0" }
vm = {git="https://github.com/libra/libra.git", version="0.1.0"}
move-vm-runtime = {git="https://github.com/libra/libra.git", version="0.1.0" }
move-vm-state = {git="https://github.com/libra/libra.git", version="0.1.0" }
language-e2e-tests = { git="https://github.com/libra/libra.git", version = "0.1.0" }
bytecode-verifier = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
datatest-stable = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
functional-tests = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
ir-to-bytecode = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
libra-types = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
libra-crypto = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
libra-vm = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
move-ir-types = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
compiler = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
move-core-types= { git = "https://github.com/libra/libra.git", version = "0.1.0" }
move-vm-types= { git = "https://github.com/libra/libra.git", version = "0.1.0" }
bytecode-source-map = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
vm-genesis = { git = "https://github.com/libra/libra.git", version = "0.1.0" }
generate-key = { git = "https://github.com/libra/libra.git", version = "0.1.0" }