-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (51 loc) · 1.27 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
[workspace]
members = []
resolver = "2"
[workspace.package]
authors = ["Ethan Uppal"]
description = "Opinionated code formatter for the Spade language"
license = "GPL-3.0"
keywords = ["spadefmt", "formatter", "autoformat"]
categories = ["development-tools"]
version = "0.0.0"
edition = "2021"
readme = "README.md"
rust-version = "1.83"
[workspace.dependencies]
argh = "0.1.13"
camino = "1.1.9"
snafu = "0.8.5"
spade-lang = "0.12.2"
spade-diagnostics = "0.12.2"
spade-parser = "0.12.2"
spade-codespan-reporting = "0.12.0"
spade-ast = "0.12.2"
spade-common = "0.12.2"
serde = { version = "1.0.217", features = ["derive"] }
toml = "0.8.20"
derivative = "2.2.0"
inform = "0.3.4"
[package]
name = "spadefmt"
authors.workspace = true
description.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
[dependencies]
argh.workspace = true
camino.workspace = true
snafu.workspace = true
spade-lang.workspace = true
spade-diagnostics.workspace = true
spade-parser.workspace = true
spade-codespan-reporting.workspace = true
spade-ast.workspace = true
spade-common.workspace = true
serde.workspace = true
toml.workspace = true
derivative.workspace = true
inform.workspace = true