forked from FuelLabs/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 912 Bytes
/
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
[package]
name = "swayfmt"
version = "0.42.1"
description = "Sway language formatter."
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
anyhow = "1"
forc-tracing = { version = "0.42.1", path = "../forc-tracing" }
forc-util = { version = "0.42.1", path = "../forc-util" }
ropey = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_ignored = "0.1"
sway-ast = { version = "0.42.1", path = "../sway-ast" }
sway-core = { version = "0.42.1", path = "../sway-core" }
sway-error = { version = "0.42.1", path = "../sway-error" }
sway-parse = { version = "0.42.1", path = "../sway-parse" }
sway-types = { version = "0.42.1", path = "../sway-types" }
thiserror = "1.0.30"
toml = "0.5"
[dev-dependencies]
forc-util = { path = "../forc-util" }
paste = "1.0"
prettydiff = "0.6"
test-macros = { path = "test_macros" }