-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 1.09 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
[package]
name = "libpkgx"
description = "Install and run `pkgx` packages"
authors = ["Max Howell <mxcl@me.com>", "Jacob Heider <jacob@pkgx.dev>"]
license = "Apache-2.0"
version = "0.8.1"
edition = "2021"
repository = "https://github.com/pkgxdev/pkgx"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
tokio = { workspace = true }
rusqlite = { workspace = true }
regex = { workspace = true }
nix = { workspace = true }
serde = { workspace = true }
anyhow = "1.0.95"
dirs-next = "2.0"
libsemverator = { version = "0.10.1", features = ["serde"] }
serde_yaml = "0.9"
tokio-stream = "0.1"
strum = "0.28"
strum_macros = "0.28"
reqwest = { version = "0.13", features = ["stream", "blocking"] }
async-compression = { version = "0.4", features = ["tokio", "gzip", "xz"] }
# pinned: 0.6.0 rejects PAX extensions in some macOS-built package tarballs
astral-tokio-tar = "=0.5.6"
tokio-util = { version = "0.7.13", features = ["compat"] }
futures = "0.3.31"
lazy_static = "1.5.0"
fs2 = "0.4.3"
tempfile = "3.16.0"
[target.'cfg(not(target_os = "macos"))'.dependencies]
rusqlite = { workspace = true, features = ["bundled"] }