-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (43 loc) · 1.44 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
# SPDX-FileCopyrightText: 2024 The Chaste Authors
# SPDX-License-Identifier: CC0-1.0
[workspace]
resolver = "2"
members = [
"chaste",
"chaste-cli",
"chaste-npm",
"chaste-pnpm",
"chaste-types",
"chaste-yarn",
"yarn-state",
]
[workspace.package]
version = "0.4.0"
authors = ["The Chaste Authors"]
license = "Apache-2.0 OR BSD-2-Clause"
categories = ["parser-implementations", "data-structures"]
repository = "https://codeberg.org/selfisekai/chaste"
exclude = ["/test_workspaces", "/tests", "tests.rs"]
[workspace.dependencies]
chaste = { version = "=0.4.0", default-features = false, path = "chaste" }
chaste-npm = { version = "=0.4.0", default-features = false, path = "chaste-npm" }
chaste-types = { version = "=0.4.0", default-features = false, path = "chaste-types" }
chaste-pnpm = { version = "=0.4.0", default-features = false, path = "chaste-pnpm" }
chaste-yarn = { version = "=0.4.0", default-features = false, path = "chaste-yarn" }
yarn-state = { version = "0.1.1", default-features = false, path = "yarn-state" }
anyhow = "1.0"
argh = "0.1"
assert_cmd = "2.0"
concat-idents = "1.1"
nodejs-semver = "4.1.0"
nom = "8.0.0-beta.1"
serde = "1.0.185"
serde_json = "1.0"
serde_norway = "0.9"
ssri = { version = "9.2", default-features = false }
thiserror = "2.0"
yarn-lock-parser = "0.10.0"
[patch.crates-io]
yarn-lock-parser = { git = "https://github.com/selfisekai/yarn-lock-parser.git", branch = "nom8" }
[profile.release]
lto = true