-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 1.06 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
[workspace]
members = [".", "src/macros"]
resolver = "2"
[workspace.package]
authors = ["Sʜɪᴍᴜʀᴀ Yū <[email protected]>"]
categories = ["parsing"]
description = "Monotonic chart parsing."
edition = "2021"
exclude = ["*.toml", ".*", "justfile"]
keywords = ["parser"]
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/yuhr/ruleset"
version = "1.0.0"
[package]
authors.workspace = true
description.workspace = true
edition.workspace = true
exclude.workspace = true
license.workspace = true
name = "ruleset"
repository.workspace = true
version.workspace = true
[dependencies]
anyhow = "=1.0.95"
comfy-table = "=7.1.3"
derive-where = "=1.2.7"
either = "=1.13.0"
ruleset-macros = { path = "src/macros", version = "=1.0.0" }
serde = { version = "=1.0.217", features = ["derive"], optional = true }
stable_try_trait_v2 = "=1.75.1"
xxhash-rust = { version = "=0.8.15", features = ["xxh3"] }
[dev-dependencies]
insta = "=1.42.0"
ruleset = { path = ".", features = ["serde"] }
serde = "=1.0.217"
serde_yaml = "=0.9.34"
stdext = "=0.3.3"
[lib]
doctest = false