-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
26 lines (24 loc) · 1.43 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
[package]
name = "move-local-debuger"
version = "0.1.0"
authors = ["梁平 <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
serde_json = "1.0.48"
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" }
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-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" }