-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (30 loc) · 1.56 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
[package]
name = "smove"
authors = ["Eiger <hello@eiger.co>"]
description = "CLI frontend for the Move compiler and VM in Substrate"
repository = "https://github.com/eigerco/smove"
version = "0.6.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hex = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
jsonrpsee = { version = "0.21", features = [ "http-client"] }
tokio = { version = "1.36", features = ["rt", "time", "net"] }
anyhow = "1.0"
blake2 = "0.10"
# Keep the version aligned with the clap version in the upstream repo https://github.com/move-language/move
clap = { version = "3.2", features = ["derive"] }
url = "2.5"
bcs = { git = "https://github.com/eigerco/bcs.git" }
move-cli = { git = "https://github.com/eigerco/substrate-move.git" }
move-stdlib = { git = "https://github.com/eigerco/substrate-move.git" }
move-core-types = { git = "https://github.com/eigerco/substrate-move.git" }
move-vm-test-utils = { git = "https://github.com/eigerco/substrate-move.git" }
move-package = { git = "https://github.com/eigerco/substrate-move.git" }
move-vm-runtime = { git = "https://github.com/eigerco/substrate-move.git" }
move-command-line-common = { git = "https://github.com/eigerco/substrate-move.git" }
move-binary-format = { git = "https://github.com/eigerco/substrate-move.git" }
move-vm-backend-common = { git = "https://github.com/eigerco/substrate-move.git", features = ["gas_schedule", "testing"] }
move-vm-support = { git = "https://github.com/eigerco/substrate-move.git" }