mirror of
https://github.com/fossasia/badgemagic-rs
synced 2025-08-14 11:17:59 +00:00
Bumps the minor-updates group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.98` | `1.0.99` | | [clap](https://github.com/clap-rs/clap) | `4.5.41` | `4.5.44` | | [uuid](https://github.com/uuid-rs/uuid) | `1.17.0` | `1.18.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.46.1` | `1.47.1` | | [serde_json](https://github.com/serde-rs/json) | `1.0.140` | `1.0.142` | | [toml](https://github.com/toml-rs/toml) | `0.9.2` | `0.9.5` | Updates `anyhow` from 1.0.98 to 1.0.99 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.98...1.0.99) Updates `clap` from 4.5.41 to 4.5.44 - [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.41...clap_complete-v4.5.44) Updates `uuid` from 1.17.0 to 1.18.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.17.0...v1.18.0) Updates `tokio` from 1.46.1 to 1.47.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.46.1...tokio-1.47.1) Updates `serde_json` from 1.0.140 to 1.0.142 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.140...v1.0.142) Updates `toml` from 0.9.2 to 0.9.5 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.9.2...toml-v0.9.5) --- updated-dependencies: - dependency-name: anyhow dependency-version: 1.0.99 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: clap dependency-version: 4.5.44 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: uuid dependency-version: 1.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: tokio dependency-version: 1.47.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: serde_json dependency-version: 1.0.142 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: toml dependency-version: 0.9.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates ... Signed-off-by: dependabot[bot] <support@github.com>
52 lines
1.4 KiB
TOML
52 lines
1.4 KiB
TOML
[package]
|
|
name = "badgemagic"
|
|
version = "0.1.0"
|
|
authors = ["Martin Michaelis <code@mgjm.de>"]
|
|
edition = "2021"
|
|
description = "Badge Magic with LEDs - Library and CLI"
|
|
homepage = "https://badgemagic.fossasia.org"
|
|
repository = "https://github.com/fossasia/badgemagic-rs"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "badgemagic"
|
|
required-features = ["cli"]
|
|
|
|
[[example]]
|
|
name = "hello-world"
|
|
required-features = ["embedded-graphics", "usb-hid"]
|
|
|
|
[features]
|
|
default = ["embedded-graphics", "usb-hid"]
|
|
|
|
cli = [
|
|
"embedded-graphics",
|
|
"serde",
|
|
"usb-hid",
|
|
"ble",
|
|
"dep:base64",
|
|
"dep:clap",
|
|
"dep:serde_json",
|
|
"dep:toml",
|
|
]
|
|
|
|
embedded-graphics = ["dep:embedded-graphics"]
|
|
serde = ["dep:serde"]
|
|
usb-hid = ["dep:hidapi"]
|
|
ble = ["dep:btleplug", "dep:uuid", "dep:tokio"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.99"
|
|
base64 = { version = "0.22.1", optional = true }
|
|
clap = { version = "4.5.44", features = ["derive"], optional = true }
|
|
embedded-graphics = { version = "0.8.1", optional = true }
|
|
hidapi = { version = "2.6.3", optional = true }
|
|
btleplug = { version = "0.11.8", optional = true }
|
|
uuid = { version = "1.18.0", optional = true }
|
|
tokio = { version = "1.47.1", features = ["rt"], optional = true }
|
|
serde = { version = "1.0.219", features = ["derive"], optional = true }
|
|
serde_json = { version = "1.0.142", optional = true }
|
|
time = "0.3.41"
|
|
toml = { version = "0.9.5", optional = true }
|
|
zerocopy = { version = "0.8.26", features = ["derive"] }
|