-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (30 loc) · 1004 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
[package]
name = "vpm-repos-gen"
version = "1.6.2"
authors = ["koyashiro <[email protected]>"]
edition = "2021"
description = "vpm repos generator."
readme = "README.md"
homepage = "https://github.com/koyashiro/vpm-repos-gen"
repository = "https://github.com/koyashiro/vpm-repos-gen"
license = "MIT OR Appach-2.0"
keywords = ["vpm"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive", "cargo", "env"] }
dirs = "5.0.1"
octocrab = { version = "0.42.0" }
regex = "1.10.4"
reqwest = { version = "0.12.4", default-features = false, features = ["json", "rustls-tls"] }
semver = { version = "1.0.22", features = ["serde"] }
serde = { version = "1.0.200", features = ["derive"] }
serde_json = { version = "1.0.116", features = ["preserve_order"] }
thiserror = "1.0.59"
tokio = { version = "1.37.0", features = ["rt", "macros", "rt-multi-thread"] }
[profile.release]
opt-level = 3
strip = true
lto = true
panic = "abort"
codegen-units = 1