jotdown/Cargo.toml
Noah Hellman 768699d138 optionally use btree maps instead of hash maps
btree maps are deterministic which is useful for fuzzing. hash maps,
however have better performance in our case
2023-02-05 20:36:49 +01:00

29 lines
633 B
TOML

[package]
name = "jotdown"
description = "A parser for the Djot markup language"
authors = ["Noah Hellman <noah@hllmn.net>"]
version = "0.1.0"
license = "MIT"
edition = "2021"
keywords = ["djot", "markup"]
categories = ["parser-implementations"]
homepage = "https://hllmn.net/projects/jotdown"
repository = "https://github.com/hellux/jotdown"
documentation = "https://docs.rs/jotdown"
exclude = [
".gitmodules",
"Makefile",
"benches",
"modules",
"tests",
]
[workspace]
members = [
"tests/afl",
]
[features]
suite = [] # test suite
suite_bench = [] # bench test suite
deterministic = [] # for stable fuzzing