forked from tamasfe/taplo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (49 loc) · 1.77 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
[workspace]
exclude = ["util/test-gen", "crates/taplo-wasm"]
members = ["crates/*"]
resolver = "2"
[workspace.package]
authors = ["tamasfe"]
edition = "2021"
license = "MIT"
homepage = "https://taplo.tamasfe.dev"
repository = "https://github.com/tamasfe/taplo"
[workspace.dependencies]
ahash = { version = "0.8.3" }
anyhow = { version = "1.0.53" }
arc-swap = { version = "1.5.0" }
async-trait = { version = "0.1.52" }
either = { version = "1.6.1" }
futures = { version = "0.3.5" }
getrandom = { version = "0.2", default-features = false }
glob = { version = "0.3" }
globset = { version = "0.4.8" }
hex = { version = "0.4" }
indexmap = { version = "2.2" }
itertools = { version = "0.10.3" }
lsp-types = { version = "0.93.0" }
once_cell = { version = "1.4" }
parking_lot = { version = "0.12.0" }
regex = { version = "1.5" }
reqwest = { version = "0.11.9", default-features = false }
rowan = { version = "0.15.3" }
schemars = { version = "0.8.3" }
serde = { version = "1" }
serde_json = { version = "1.0.78" }
sha1 = { version = "0.10.5" }
tap = { version = "1.0.1" }
thiserror = { version = "1.0.30" }
time = { version = "0.3.7" }
tokio = { version = "1.24.2", default-features = false }
toml = { version = "0.7" }
tracing = { version = "0.1.30" }
tracing-subscriber = { version = "0.3.7" }
url = { version = "2.2.2" }
[profile.release]
codegen-units = 1
lto = "thin"
opt-level = 3
strip = true
[profile.bench]
lto = true
opt-level = 3