28 lines
677 B
TOML
28 lines
677 B
TOML
[package]
|
|
name = "parsing"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
license = "AGPL-3.0"
|
|
repository = "https://github.com/Titaniumtown/YTBN-Graphing-Software/tree/main/parsing"
|
|
description = "Parsing library for YTBN-Graphing-Software"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
phf = "0.10"
|
|
exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", features = [
|
|
"partial",
|
|
] }
|
|
lazy_static = "1.4"
|
|
|
|
pprof = { version = "0.8", features = ["flamegraph"] }
|
|
criterion = "0.3"
|
|
criterion-macro = "0.3"
|
|
|
|
[build-dependencies]
|
|
phf_codegen = "0.10"
|
|
|
|
[package.metadata.cargo-all-features]
|
|
skip_optional_dependencies = true #don't test optional dependencies, only features
|