-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
47 lines (43 loc) · 1.3 KB
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
[package]
name = "cargo-packager-updater"
version = "0.2.3"
description = "Rust executable updater."
authors = ["CrabNebula Ltd.", "Tauri Programme within The Commons Conservancy"]
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[features]
default = ["rustls-tls"]
process-relaunch-dangerous-allow-symlink-macos = [
"cargo-packager-utils/process-relaunch-dangerous-allow-symlink-macos",
]
native-tls = ["reqwest/native-tls"]
native-tls-vendored = ["reqwest/native-tls-vendored"]
rustls-tls = ["reqwest/rustls-tls-native-roots"]
[dependencies]
cargo-packager-utils = { version = "0.1.1", path = "../utils" }
reqwest = { version = "0.12", default-features = false, features = [
"json",
"stream",
"blocking",
] }
thiserror = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
dunce = { workspace = true }
dirs = { workspace = true }
semver = { workspace = true }
base64 = { workspace = true }
time = { workspace = true, features = ["parsing", "formatting"] }
http = "1"
url = { version = "2", features = ["serde"] }
minisign-verify = "0.2"
ctor = "0.2"
tempfile = "3.12"
log = "0.4"
percent-encoding = "2"
[target."cfg(target_os = \"macos\")".dependencies]
tar = { workspace = true }
flate2 = "1.0"
[dev-dependencies]
tiny_http = "0.12"