-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
88 lines (73 loc) · 1.97 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
[package]
name = "term-rustdoc"
version = "0.2.0"
edition = "2021"
autobins = false
exclude = ["**/snapshots/", "tests/", "outline-design.txt", "cliff.toml", "CHANGELOG.md", ".github"]
repository = "https://github.com/zjp-CN/term-rustdoc"
description = "A TUI for Rust docs."
license = "MIT"
[[bin]]
name = "term-rustdoc"
path = "src/bin/main.rs"
[dependencies]
rustdoc-types = "0.24"
rustdoc-json = "0.8"
public-api = "0.33"
redb = "1.5"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
xz2 = "0.1"
bytesize = "1"
termtree = "0.4"
compact_str = { version = "0.7", features = ["serde"] }
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
color-eyre = "0.6"
rustc-hash = "1"
regex = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
constcat = "0.5"
ratatui = "0.26.0"
crossterm = "0.27"
textwrap = "0.16"
syntect = "5.1"
pulldown-cmark = "0.10"
unicode-width = "0.1"
itertools = "0.12"
smallvec = "1.13"
icu_segmenter = "1"
home = "0.5"
dirs = "5"
walkdir = "2"
semver = "1"
nucleo-matcher = "0.3"
rayon = "1"
tempfile = "3"
cargo_toml = { version = "0.19", features = ["features"] }
self_cell = "1"
[dev-dependencies]
insta = "1"
similar-asserts = "1.5"
# quicker diffing in tests of insta/similar-asserts
[profile.dev.package.similar]
opt-level = 3
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[workspace]
members = ["./tests/integration/"]
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.11.1"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "plan"
windows-archive = ".tar.gz"