-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (78 loc) · 1.93 KB
/
Copy pathCargo.toml
File metadata and controls
84 lines (78 loc) · 1.93 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "quickmark"
version = "0.1.0"
edition = "2021"
[lib]
name = "quickmark"
path = "src/lib.rs"
crate-type = ["cdylib", "lib"]
[features]
default = ["linkify"]
[dependencies]
# Dependencies from python shim
mime_guess = "2.0"
itertools = ">= 0.11"
# Dependencies from original markdown-it-rust
# TODO (matt): check to update
argparse = ">= 0.2.1"
const_format = ">= 0.1.0"
derivative = ">= 1.0.2"
derive_more = { version = ">= 2", features = ["deref", "deref_mut"] }
downcast-rs = ">= 1.0.2"
entities = ">= 0.1.0"
html-escape = ">= 0.1.0"
linkify = { version = ">= 0.5.0", optional = true }
mdurl = ">= 0.3.1"
url = ">= 2.5"
once_cell = ">= 1.0.1"
readonly = ">= 0.2.0"
regex = ">= 1.0.0"
stacker = ">= 0.1.2"
unicode_categories = ">= 0.1"
unicode-general-category = ">= 0.1.0"
pulldown-latex = "0.7.1"
fancy-regex = "0.15.0"
cached = "0.56.0"
v_htmlescape = "0.15.8" # simd escaping - faster
phf = { version = "0.12.1", features = ["macros"] }
inkjet = { version = "0.11.1", default-features = false, features = [
"html",
"theme",
"terminal",
# no-op language
"language-plaintext",
# Languages to use
"language-bash",
"language-c",
"language-c-sharp",
"language-cpp",
"language-css",
"language-dockerfile",
"language-dart",
"language-go",
"language-html",
"language-java",
"language-javascript",
"language-json",
"language-latex",
"language-python",
"language-rust",
"language-scss",
"language-sql",
"language-toml",
"language-typescript",
"language-yaml",
] }
[dev-dependencies]
criterion = "0.7.0"
prettydiff = ">= 0.6.4"
rstest = ">= 0.24"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[[bench]]
name = "plugins"
harness = false
[dependencies.pyo3]
version = ">= 0.25.0, <= 0.27"
# "abi3-py38" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.8
features = ["abi3-py38"]