-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (33 loc) · 959 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
[package]
name = "parsedown"
version = "1.4.3"
authors = ["Rodney Johnson <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
repository = "https://github.com/rodneylab/parsedown"
# js-sys v.0.3.69 requires rustc 1.73
rust-version = "1.73"
description = "Markdown processing"
[lib]
crate-type = ["cdylib"]
[profile.release]
codegen-units = 1
incremental = true
lto = true
opt-level = "z"
[dependencies]
aho-corasick = "1.1.3"
deunicode = "1.6.0"
getrandom = { version = "0.2.15", features = ["js"] }
html5ever = "0.29.0"
js-sys = "0.3.69"
mrml = { version = "4.0.1", features = ["parse", "render"], default-features = false }
nom = { version = "7.1.3", features = ["alloc"] }
pulldown-cmark = "0.12.2"
pulldown-cmark-escape = "0.11.0"
serde = { version = "1.0.217", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
textwrap = "0.16.1"
thiserror = "2.0.9"
url = "2.5.4"
wasm-bindgen = { version = "=0.2.92", features = ["serde-serialize"] }