-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
66 lines (50 loc) · 1.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "move-unscrambler"
version = "0.0.1"
authors = ["Alex Koz. <[email protected]>"]
edition = "2018"
[dependencies]
log = "0.4"
toml = "0.5"
anyhow = "1.0.31"
walkdir = "2.3.1"
net = { package = "move-unscrambler-network", path = "net" }
libra = { package = "libra-deps", path = "libra" }
compat = { package = "move-compat", path = "compat" }
# render
serde_json = "1.0"
hex = "0.4"
handlebars = "3.2"
handlebars_misc_helpers = "0.9.1"
[dependencies.serde]
version = "1.0"
features = [ "default", "derive" ]
[target.'cfg(not(wasm32))'.dependencies.env_logger]
version = "0.7"
optional = true
[target.'cfg(not(wasm32))'.dependencies.pretty_env_logger]
version = "0.4.0"
optional = true
[target.'cfg(not(wasm32))'.dependencies.clap]
version = "3.0.0-beta.1"
features = [ "default", "wrap_help" ]
# WASM/WASI specific deps:
[target.'cfg(wasm32)'.dependencies.console_log]
version = "0.2"
features = [ "color" ]
[features]
default = [
"env_logger",
"pretty_log"
]
pretty_log = [
"pretty_env_logger"
]
[workspace]
members = [
"poc", # TODO: refactor, move to the main crate.
"net",
"libra",
"compat"
]