Cargo.toml: add more metadata, bump version

This commit is contained in:
2026-01-02 22:44:09 +09:00
parent f73a3d495f
commit abf08b3013
2 changed files with 14 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -454,7 +454,7 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
[[package]]
name = "rtkit-client-rs"
version = "0.1.0"
version = "1.0.0"
dependencies = [
"nix",
"thiserror",

View File

@@ -1,7 +1,18 @@
[package]
name = "rtkit-client-rs"
version = "0.1.0"
edition = "2021"
version = "1.0.0"
edition = "2024"
license = "MIT"
authors = [
"projects@pvv.ntnu.no",
]
homepage = "https://git.pvv.ntnu.no/Projects/rtkit-client-rs"
repository = "https://git.pvv.ntnu.no/Projects/rtkit-client-rs"
documentation = "https://pages.pvv.ntnu.no/Projects/rtkit-client-rs/main/docs/rtkit_client_rs/"
description = "Client library for requesting privileged scheduling from rtkit"
categories = ["API bindings", "Operating system"]
keywords = ["rtkit", "scheduling", "realtime"]
readme = "README.md"
[dependencies]
nix = { version = "0.30.1", features = ["process"] }