jotdown/Cargo.toml

41 lines
838 B
TOML
Raw Normal View History

2022-11-12 12:45:17 -05:00
[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 = [
2022-11-12 12:46:13 -05:00
".gitmodules",
2022-11-12 12:45:17 -05:00
"Makefile",
2022-11-12 12:46:13 -05:00
"modules",
"tests",
2022-11-12 12:45:17 -05:00
]
2022-11-12 12:46:13 -05:00
2023-02-01 11:44:42 -05:00
[workspace]
members = [
2023-02-09 15:57:11 -05:00
"bench/criterion",
"bench/input",
2023-02-05 13:41:11 -05:00
"examples/jotdown_wasm",
]
exclude = [
2023-02-01 11:44:42 -05:00
"tests/afl",
]
2023-02-05 14:07:20 -05:00
[[bin]]
name = "jotdown"
required-features = ["html"]
doc = false
2022-11-12 12:46:13 -05:00
[features]
2023-02-05 14:07:20 -05:00
default = ["html"]
html = [] # html renderer and minimal cli binary
2022-11-12 12:46:13 -05:00
suite = [] # test suite
suite_bench = [] # bench test suite
deterministic = [] # for stable fuzzing