-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (32 loc) · 831 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 = "typst-upgrade"
version = "1.4.0"
edition = "2021"
authors = ["coekjan <[email protected]>"]
license = "MIT"
description = "A tool to upgrade typst packages"
repository = "https://github.com/Coekjan/typst-upgrade"
keywords = ["cli", "typst"]
categories = ["development-tools"]
exclude = ["/.github", "/tests"]
[dependencies]
clap = { version = "4", features = ["derive", "env", "suggestions", "string"] }
diff = "0.1"
once_cell = "1"
reqwest = { version = "0.12", default-features = false, features = [
"blocking",
"json",
"rustls-tls",
] }
serde_json = "1"
termcolor = "1"
typst-syntax = "0.12"
[dev-dependencies]
paste = "1"
[profile.release]
lto = true
panic = "abort"
[lints.rust]
unsafe_code = "forbid"
warnings = "deny"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }