mirror of
https://github.com/niri-wm/niri.git
synced 2026-06-21 02:01:55 +07:00
9bfe90dee1
Bumps the rust-dependencies group with 3 updates in the / directory: [clap](https://github.com/clap-rs/clap), [portable-atomic](https://github.com/taiki-e/portable-atomic) and [schemars](https://github.com/GREsau/schemars). Updates `clap` from 4.5.30 to 4.5.31 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.30...v4.5.31) Updates `portable-atomic` from 1.10.0 to 1.11.0 - [Release notes](https://github.com/taiki-e/portable-atomic/releases) - [Changelog](https://github.com/taiki-e/portable-atomic/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/portable-atomic/compare/v1.10.0...v1.11.0) Updates `schemars` from 0.8.21 to 0.8.22 - [Release notes](https://github.com/GREsau/schemars/releases) - [Changelog](https://github.com/GREsau/schemars/blob/master/CHANGELOG.md) - [Commits](https://github.com/GREsau/schemars/compare/v0.8.21...v0.8.22) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: portable-atomic dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: schemars dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
547 B
TOML
23 lines
547 B
TOML
[package]
|
|
name = "niri-ipc"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
|
|
description = "Types and helpers for interfacing with the niri Wayland compositor."
|
|
keywords = ["wayland"]
|
|
categories = ["api-bindings", "os"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true, optional = true }
|
|
schemars = { version = "0.8.22", optional = true }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[features]
|
|
clap = ["dep:clap"]
|
|
json-schema = ["dep:schemars"]
|