-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (40 loc) · 1.13 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
[package]
name = "tectonopedia"
version = "0.1.0"
edition = "2018"
[dependencies]
bincode = "^1.3"
clap = { version = "^4", features = ["derive"] }
csv = "^1.2"
digest = "0.10"
filetime = "0.2"
futures = { version = "0.3", default-features = false }
generic-array = { version = "0.14", features = ["serde"] }
libc = "0.2"
notify-debouncer-mini = { version = "0.2", default-features = false }
num_cpus = "^1.15"
open = "^4.0"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
sha2 = "0.10"
string-interner = "0.14"
tectonic = "0.14"
tectonic_bridge_core = "0.4"
tectonic_engine_spx2html = "0.3"
tectonic_errors = "0.2"
tectonic_status_base = "0.2"
tempfile = "^3.4"
threadpool = "^1.8"
tokio = { version = "^1.36", features = ["macros", "sync", "rt-multi-thread"] }
tokio-stream = "0.1"
tokio-task-pool = "0.1"
tokio-util = { version = "0.7", features = ["io-util"] }
toml = "0.5"
walkdir = "^2"
warp = "0.3"
[features]
default = ["geturl-reqwest"]
external-harfbuzz = ["tectonic/external-harfbuzz"]
geturl-curl = ["tectonic/geturl-curl"]
geturl-reqwest = ["tectonic/geturl-reqwest"]
native-tls-vendored = ["tectonic/native-tls-vendored"]