jotdown/Cargo.toml
Noah Hellman a2adb40629 cargo: exclude dirs from package
unneeded files for downstream
2023-04-05 21:17:33 +02:00

43 lines
883 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 = [
".github",
".gitmodules",
"Makefile",
"bench",
"modules",
"tests",
]
[workspace]
members = [
"bench/criterion",
"bench/iai",
"bench/input",
"examples/jotdown_wasm",
]
exclude = [
"tests/afl",
]
[[bin]]
name = "jotdown"
required-features = ["html"]
doc = false
[features]
default = ["html"]
html = [] # html renderer and minimal cli binary
suite = [] # test suite
suite_bench = [] # bench test suite
deterministic = [] # for stable fuzzing