-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
53 lines (46 loc) · 1.82 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 = "movefmt"
version = "1.0.6"
repository = "https://github.com/movebit/movefmt"
license = "Apache-2.0"
publish = false
edition = "2021"
[lib]
path = "src/lib.rs"
[[bin]]
name = "movefmt"
path = "src/bin/main.rs"
[dependencies]
log = "0.4"
fern = "0.6"
colored = "2.0"
chrono = "0.4"
diff = "0.1"
term = "0.7"
lazy_static = "1.4.0"
regex = "1.5.5"
bisection = "0.1.0"
anyhow = "1.0.52"
codespan-reporting = "0.11.1"
lsp-types = "0.94.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.64"
url = "2.2.2"
thiserror = "1.0.40"
walkdir = "2"
getopts = "0.2"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
commentfmt = { version = "1.6.0", path = "src/comment_fmt" }
move-command-line-common = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "d5f94966af9c526b151809ed0850cf90fc661abd", package = "move-command-line-common" }
move-compiler = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "d5f94966af9c526b151809ed0850cf90fc661abd", package = "move-compiler" }
move-ir-types = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "d5f94966af9c526b151809ed0850cf90fc661abd", package = "move-ir-types" }
move-package = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "d5f94966af9c526b151809ed0850cf90fc661abd", package = "move-package" }
move-symbol-pool = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "d5f94966af9c526b151809ed0850cf90fc661abd", package = "move-symbol-pool" }
move-core-types = { git = "https://github.com/aptos-labs/aptos-core.git", rev = "d5f94966af9c526b151809ed0850cf90fc661abd", package = "move-core-types" }
[target.'cfg(not(target_os= "windows"))'.dependencies]
pprof = { version = "0.11.0" , features = ["flamegraph" , "protobuf"]}
[profile.release]
debug = true
[features]
pprof = []