-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 705 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 705 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
[package]
name = "htmlify"
authors = ["Jamie Rodriguez"]
license = "Zlib"
description = "Converts source-code into semantically-labelled HTML"
version = "0.1.0"
edition = "2024"
homepage = "https://github.com/Jamie-Rodriguez"
repository = "https://github.com/Jamie-Rodriguez/htmlify"
readme = "README.md"
keywords = ["HTML", "parser", "lexer", "semantic"]
categories = ["command-line-utilities", "parsing", "web-programming"]
publish = false
rust-version = "1.92.0"
[dependencies]
clap = { version = "4.5.53", features = ["derive"] }
phf = { version = "0.13.1", features = ["macros"] }
regex = "1.12.2"
[dev-dependencies]
proptest = "1.9.0"
[profile.release]
strip = true
lto = true
codegen-units = 1