-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 966 Bytes
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 966 Bytes
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
[package]
name = "hyprlang"
version = "0.4.0"
edition = "2024"
authors = ["Alex Spinu"]
description = "A scripting language interpreter and parser for Hyprlang and Hyprland configuration files."
keywords = ["hyprland", "scripting", "interpreter", "parser", "pest"]
categories = ["parsing", "config"]
documentation = "https://github.com/spinualexandru/hyprlang-rs#readme"
repository = "https://github.com/spinualexandru/hyprlang-rs"
homepage = "https://github.com/spinualexandru/hyprlang-rs"
license = "MIT OR Apache-2.0"
[features]
default = []
hyprland = []
mutation = []
[dependencies]
pest = { version = "2.8.4", features = ["pretty-print"] }
pest_derive = "2.8.4"
[lib]
name = "hyprlang"
path = "src/lib.rs"
[dev-dependencies]
criterion = { version = "0.8.1", features = ["html_reports"] }
[[bench]]
name = "parsing"
harness = false
[[bench]]
name = "retrieval"
harness = false
[[bench]]
name = "mutation"
harness = false
required-features = ["mutation"]