[package]
edition = "2021"
rust-version = "1.79"
name = "libguix"
version = "0.1.2"
authors = ["Franz Geffke <mail@gofranz.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unofficial Rust client library for GNU Guix."
homepage = "https://github.com/franzos/guix-rs"
readme = "README.md"
keywords = [
"guix",
"package-manager",
"linux",
"system-admin",
"cli",
]
categories = [
"api-bindings",
"os::linux-apis",
]
license = "GPL-3.0-only"
repository = "https://github.com/franzos/guix-rs"
[features]
blocking = []
default = ["tracing"]
live-tests = []
tracing = ["dep:tracing"]
[lib]
name = "libguix"
path = "src/lib.rs"
[[test]]
name = "live"
path = "tests/live.rs"
[[test]]
name = "operation"
path = "tests/operation.rs"
[[test]]
name = "pull_repl"
path = "tests/pull_repl.rs"
[[test]]
name = "repl_interrupt"
path = "tests/repl_interrupt.rs"
[[test]]
name = "repl_ops"
path = "tests/repl_ops.rs"
[[test]]
name = "system"
path = "tests/system.rs"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
features = ["std"]
default-features = false
[dependencies.lexpr]
version = "0.2"
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.31"
features = ["signal"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"process",
"io-util",
"sync",
"time",
"signal",
"net",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tracing]
version = "0.1"
features = ["std"]
optional = true
default-features = false
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"test-util",
"io-util",
"sync",
"time",
]
[dev-dependencies.tokio-test]
version = "0.4"