-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
48 lines (46 loc) · 1.25 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
[workspace]
members = ["crates/liwe", "crates/iwe", "crates/iwes"]
resolver = "2"
[workspace.package]
authors = ["Dmytro Halichenko <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
rust-version = "1.82"
repository = "https://github.com/iwe-org/iwe"
version = "0.0.24"
[workspace.dependencies]
liwe = { path = "./crates/liwe", version = "0.0.24" }
anyhow = "1.0.41"
clap = { version = "4.0", features = ["derive"] }
crossbeam-channel = "0.5.8"
env_logger = "0.11.1"
extend = "1.2.0"
futures = "0.3.30"
indoc = { version = "2", features = [] }
itertools = { version = "0.12.0", features = [] }
log = "0.4.20"
lsp-server = "0.7.6"
lsp-types = "0.95.1"
pretty_assertions = "1.4.0"
pulldown-cmark = "0.13.0"
pulldown-cmark-to-cmark = "20.0.1"
rand = "0.8.4"
rayon = { version = "1.5.1", features = [] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8.20"
reqwest = { version = "0.12.12", features = ["blocking", "json"] }
sha2 = "0.10.8"
assert-json-diff = "2.0.2"
difference = "2.0"
tracing = "0.1.40"
tracing-tree = "0.3.0"
fuzzy-matcher = "0.3.7"
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"registry",
"fmt",
"local-time",
"std",
"time",
"tracing-log",
] }