forked from denoland/deno_doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
102 lines (91 loc) · 2.73 KB
/
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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "deno_doc"
version = "0.136.0"
edition = "2021"
description = "doc generation for deno"
authors = ["the Deno authors"]
license = "MIT"
repository = "https://github.com/denoland/deno_doc"
[workspace]
members = ["lib"]
[workspace.dependencies]
deno_graph = { version = "0.75.1", default-features = false, features = ["symbols"] }
import_map = "0.19.0"
serde = { version = "1.0.140", features = ["derive"] }
[lib]
crate-type = ["cdylib", "rlib"]
name = "deno_doc"
[[example]]
name = "ddoc"
required-features = ["html"]
[dependencies]
anyhow = "1.0.58"
cfg-if = "1.0.0"
deno_ast = "0.38.0"
deno_graph.workspace = true
indexmap = "2.0.2"
futures = "0.3.26"
import_map.workspace = true
lazy_static = "1.4.0"
regex = "1.6.0"
serde.workspace = true
serde_json = { version = "1.0.82", features = ["preserve_order"] }
termcolor = "1.1.2"
html-escape = { version = "0.2.13", optional = true }
comrak = { version = "0.20.0", optional = true, default-features = false }
handlebars = { version = "5.0", optional = true, features = ["string_helpers"] }
syntect = { version = "5.1.0", optional = true, default-features = false, features = [
"parsing",
"default-syntaxes",
"default-themes",
"html",
"dump-load",
"regex-onig",
] }
ammonia = { version = "3.3.0", optional = true }
tree-sitter-highlight = { version = "0.20.1", optional = true }
tree-sitter-javascript = { version = "0.20.1", optional = true }
tree-sitter-typescript = { version = "0.20.3", optional = true }
tree-sitter-json = { version = "0.20.1", optional = true }
tree-sitter-regex = { version = "0.20.0", optional = true }
tree-sitter-css = { version = "0.20.0", optional = true }
tree-sitter-toml = { version = "0.20.0", optional = true }
tree-sitter-md = { version = "0.1.7", optional = true }
tree-sitter-rust = { version = "0.20.4", optional = true }
tree-sitter-html = { version = "0.20.0", optional = true }
tree-sitter-bash = { version = "0.20.5", optional = true }
[dev-dependencies]
anyhow = { version = "1.0.58" }
clap = "2.33.3"
console_static_text = "0.8.2"
criterion = { version = "0.4.0", features = ["async_futures", "html_reports"] }
file_test_runner = "0.7.0"
tokio = { version = "1.25.0", features = ["full"] }
pretty_assertions = "1.0.0"
insta = "1.38.0"
[features]
default = ["html", "rust", "ammonia"]
rust = []
html = ["html-escape", "comrak", "handlebars"]
tree-sitter = [
"tree-sitter-highlight",
"tree-sitter-javascript",
"tree-sitter-typescript",
"tree-sitter-json",
"tree-sitter-regex",
"tree-sitter-css",
"tree-sitter-toml",
"tree-sitter-md",
"tree-sitter-rust",
"tree-sitter-html",
"tree-sitter-bash",
]
[[test]]
name = "specs"
path = "tests/specs_test.rs"
harness = false
[profile.release]
codegen-units = 1
incremental = true
lto = true
opt-level = "s"