[package]
edition = "2021"
rust-version = "1.75"
name = "velopack"
version = "1.2.0"
authors = ["Velopack Ltd, Caelan Sayler <git@caesay.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Installer and automatic update framework for cross-platform desktop applications"
homepage = "https://velopack.io"
documentation = "https://docs.velopack.io"
readme = "README.md"
keywords = [
"update",
"install",
"velopack",
"squirrel",
"automatic-updates",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/velopack/velopack"
[features]
default = []
file-logging = [
"log-panics",
"simplelog",
"time",
]
public-utils = []
[lib]
name = "velopack"
path = "src/lib.rs"
[[test]]
name = "noteshtml_deserialization"
path = "tests/noteshtml_deserialization.rs"
[[test]]
name = "source_auto"
path = "tests/source_auto.rs"
[[test]]
name = "source_file"
path = "tests/source_file.rs"
[[test]]
name = "source_flow"
path = "tests/source_flow.rs"
[[test]]
name = "source_gitea"
path = "tests/source_gitea.rs"
[[test]]
name = "source_github"
path = "tests/source_github.rs"
[[test]]
name = "source_gitlab"
path = "tests/source_gitlab.rs"
[[test]]
name = "source_http"
path = "tests/source_http.rs"
[[test]]
name = "source_none"
path = "tests/source_none.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bitflags]
version = "2.11"
[dependencies.derivative]
version = "2.2"
[dependencies.glob]
version = "0.3"
[dependencies.lazy_static]
version = "1.5"
[dependencies.log]
version = "0.4"
[dependencies.log-panics]
version = "2.1.0"
optional = true
[dependencies.normpath]
version = "1.5"
[dependencies.rand]
version = "0.10"
[dependencies.regex]
version = "1.12"
[dependencies.semver]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha1]
version = "0.11"
[dependencies.sha2]
version = "0.11"
[dependencies.simplelog]
version = "0.12"
optional = true
[dependencies.thiserror]
version = "2.0"
[dependencies.time]
version = "0.3"
optional = true
[dependencies.ureq]
version = "3.2"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1.21"
features = [
"v4",
"fast-rng",
"macro-diagnostics",
]
[dependencies.xml]
version = "1.2"
[dependencies.zip]
version = "8.0"
features = ["deflate"]
default-features = false
[dev-dependencies.tempfile]
version = "3.25"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.wait-timeout]
version = "0.2"
[target."cfg(unix)".dependencies.waitpid-any]
version = "0.3"
[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_Storage",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_System_IO",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Shell",
"Win32_System_Kernel",
"Win32_System_Registry",
"Wdk",
"Wdk_System",
"Wdk_System_Threading",
]