forked from lalrpop/lalrpop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 1.03 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
[workspace]
members = [
"doc/calculator",
"doc/nobol",
"doc/pascal/lalrpop",
"doc/whitespace",
"doc/lexer",
"lalrpop-test",
"lalrpop-util",
"lalrpop",
]
resolver = "2"
[workspace.package]
repository = "https://github.com/lalrpop/lalrpop"
authors = ["Niko Matsakis <[email protected]>"]
license = "Apache-2.0 OR MIT"
version = "0.20.2" # LALRPOP
edition = "2021"
# This is (very) soft limit of the minimum supported version.
# Please update it when lalrpop requires a new feature.
# We prefer to avoid the latest 2 stable versions. (e.g. at most 1.64 when stable is 1.66)
# NOTE: Don't forget to update test.yaml as well.
rust-version = "1.70"
[workspace.dependencies]
diff = { version = "0.1.12", default-features = false }
regex = { version = "1.3", default-features = false, features = ["std"] }
regex-syntax = { version = "0.8.2", default-features = false }
regex-automata = { version = "0.4", default-features = false, features = [
"perf",
"syntax",
"hybrid",
] }