-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (21 loc) · 960 Bytes
/
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
[package]
name = "bbscope"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "BBCode to HTML with scoping rules, auto-close tags, highly extensible"
repository = "https://github.com/randomouscrap98/bbscope-rust"
readme = "README.md"
keywords = ["bbcode","html","parse","scope","markup"]
categories = ["parsing","text-processing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = { version = "1.0", default-features = false, features = ["std"] }
html-escape = "0.2.12"
pretty_assertions = { version = "1.3.0", optional = true }
onestop = { version = "0.0.2", optional = true } # My dumb profiling library
[features]
# default = ["bigtest"] # Enable this so the IDE doesn't interrupt your coding for those two cfg-conditional tests
perf = ["regex/perf"] # Enable perfomance enhancements (just regex for now)
profiling = ["dep:onestop"]
bigtest = ["dep:pretty_assertions"]