This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 1.53 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
[package]
name = "gdpack"
version = "0.3.1"
description = "A small, single-purpose CLI application for managing Godot addons."
edition = "2021"
rust-version = "1.77.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.82"
clap = {version = "4.5.4", features = ["cargo", "derive"]}
git2 = "0.18.3"
globset = "0.4.14"
reqwest = {version = "0.12.4", features = ["blocking"]}
rust-ini = {version = "0.21.0", features = ["inline-comment"]}
semver = "1.0.22"
serde = {version = "1.0.199", features = ["derive"]}
tempfile = "3.10.1"
thiserror = "1.0.59"
toml = "0.8.12"
toml_edit = {version = "0.22.12", features = ["serde"]}
typed-builder = "0.18.2"
url = {version = "2.5.0", features = ["serde"]}
walkdir = "2.5.0"
zip = "1.1.2"
[dev-dependencies]
rstest = {version = "0.19.0", default-features = false}
# NOTE: This works around a cross-compilation issue seen in GitHub actions runs
# where `openssl-sys` cannot find `openssl` because "pkg-config has not been
# configured to support cross-compilation".
[target.'aarch64-apple-darwin'.dependencies]
openssl-sys = {version = "*", features = ["vendored"]}
[target.'aarch64-unknown-linux-gnu'.dependencies]
openssl-sys = {version = "*", features = ["vendored"]}
[target.'x86_64-unknown-linux-gnu'.dependencies]
openssl-sys = {version = "*", features = ["vendored"]}