-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
51 lines (46 loc) · 989 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "jotdown"
description = "A parser for the Djot markup language"
authors = ["Noah Hellman <[email protected]>"]
version = "0.6.0"
license = "MIT"
edition = "2021"
rust-version = "1.56"
keywords = ["djot", "markup"]
categories = ["parser-implementations"]
homepage = "https://hllmn.net/projects/jotdown"
repository = "https://github.com/hellux/jotdown"
documentation = "https://docs.rs/jotdown"
exclude = [
"contrib",
".github",
".gitmodules",
"Makefile",
"bench",
"modules",
"tests",
]
[workspace]
members = [
"bench/criterion",
"bench/iai",
"bench/input",
"examples/jotdown_wasm",
"tests/html-ref",
"tests/html-ut",
]
exclude = [
"tests/afl",
]
[[bin]]
name = "jotdown"
required-features = ["html"]
doc = false
[features]
default = ["html"]
html = [] # html renderer and minimal cli binary
deterministic = [] # for stable fuzzing
[profile.release]
lto = true
[profile.release.package.jotdown_wasm]
opt-level = 's'