21 lines
531 B
TOML
21 lines
531 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 = { version = "0.13" }
|
|
exmex = {version = "0.20.5", features = ["partial"]}
|
|
|
|
[build-dependencies]
|
|
phf_codegen = { version = "0.13" }
|
|
|
|
[package.metadata.cargo-all-features]
|
|
skip_optional_dependencies = true #don't test optional dependencies, only features
|