[package]
edition = "2021"
rust-version = "1.70"
name = "guix-scheme"
version = "0.2.0"
authors = ["Franz Geffke <mail@gofranz.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read, edit, and generate Guix Scheme files (channels.scm, system config.scm) from Rust"
homepage = "https://github.com/franzos/guix-scheme"
readme = "README.md"
keywords = [
"guix",
"scheme",
"channels",
"config",
"parser",
]
categories = [
"parser-implementations",
"config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/franzos/guix-scheme"
[features]
guile-check = []
[lib]
name = "guix_scheme"
path = "src/lib.rs"
[[example]]
name = "format_demo"
path = "examples/format_demo.rs"
[[test]]
name = "channels_edit"
path = "tests/channels_edit.rs"
[[test]]
name = "channels_read"
path = "tests/channels_read.rs"
[[test]]
name = "guix_install_parity"
path = "tests/guix_install_parity.rs"
[[test]]
name = "module_layer"
path = "tests/module_layer.rs"
[[test]]
name = "modules_read"
path = "tests/modules_read.rs"
[[test]]
name = "os_builder"
path = "tests/os_builder.rs"
[[test]]
name = "os_builder_snapshots"
path = "tests/os_builder_snapshots.rs"
[[test]]
name = "os_system_build"
path = "tests/os_system_build.rs"
[[test]]
name = "os_view"
path = "tests/os_view.rs"
[[test]]
name = "real_configs"
path = "tests/real_configs.rs"
[[test]]
name = "record"
path = "tests/record.rs"
[[test]]
name = "services_view"
path = "tests/services_view.rs"
[[test]]
name = "system_edit"
path = "tests/system_edit.rs"
[[test]]
name = "validate"
path = "tests/validate.rs"
[dependencies.scheme-edit]
version = "0.2.0"