21 lines
604 B
TOML
21 lines
604 B
TOML
[package]
|
|
name = "owlry-plugin-systemd"
|
|
version = "0.2.1"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "systemd user services plugin for owlry - list and control user-level systemd services"
|
|
keywords = ["owlry", "plugin", "systemd", "services"]
|
|
categories = ["os"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"] # Compile as dynamic library (.so)
|
|
|
|
[dependencies]
|
|
# Plugin API for owlry
|
|
owlry-plugin-api = { path = "../owlry-plugin-api" }
|
|
|
|
# ABI-stable types (re-exported from owlry-plugin-api, but needed for RString etc)
|
|
abi_stable = "0.11"
|