mirror of
https://github.com/fossasia/badgemagic-rs
synced 2025-06-23 15:23:58 +00:00
Bumps the minor-updates group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.95` | | [clap](https://github.com/clap-rs/clap) | `4.5.13` | `4.5.23` | | [hidapi](https://github.com/ruabmbua/hidapi-rs) | `2.6.1` | `2.6.3` | | [btleplug](https://github.com/deviceplug/btleplug) | `0.11.5` | `0.11.6` | | [uuid](https://github.com/uuid-rs/uuid) | `1.10.0` | `1.11.0` | | [serde](https://github.com/serde-rs/serde) | `1.0.204` | `1.0.217` | | [serde_json](https://github.com/serde-rs/json) | `1.0.121` | `1.0.134` | | [time](https://github.com/time-rs/time) | `0.3.36` | `0.3.37` | Updates `anyhow` from 1.0.86 to 1.0.95 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.86...1.0.95) Updates `clap` from 4.5.13 to 4.5.23 - [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.13...clap_complete-v4.5.23) Updates `hidapi` from 2.6.1 to 2.6.3 - [Release notes](https://github.com/ruabmbua/hidapi-rs/releases) - [Commits](https://github.com/ruabmbua/hidapi-rs/compare/v2.6.1...v2.6.3) Updates `btleplug` from 0.11.5 to 0.11.6 - [Changelog](https://github.com/deviceplug/btleplug/blob/master/CHANGELOG.md) - [Commits](https://github.com/deviceplug/btleplug/compare/0.11.5...0.11.6) Updates `uuid` from 1.10.0 to 1.11.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.0) Updates `tokio` from 1.39.2 to 1.42.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.2...tokio-1.42.0) Updates `serde` from 1.0.204 to 1.0.217 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.204...v1.0.217) Updates `serde_json` from 1.0.121 to 1.0.134 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.121...v1.0.134) Updates `time` from 0.3.36 to 0.3.37 - [Release notes](https://github.com/time-rs/time/releases) - [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md) - [Commits](https://github.com/time-rs/time/compare/v0.3.36...v0.3.37) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: hidapi dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: btleplug dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-updates - dependency-name: time 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.95"
|
|
base64 = { version = "0.22.1", optional = true }
|
|
clap = { version = "4.5.23", features = ["derive"], optional = true }
|
|
embedded-graphics = { version = "0.8.1", optional = true }
|
|
hidapi = { version = "2.6.3", optional = true }
|
|
btleplug = { version = "0.11.6", optional = true }
|
|
uuid = { version = "1.11.0", optional = true }
|
|
tokio = { version = "1.39.2", features = ["rt"], optional = true }
|
|
serde = { version = "1.0.217", features = ["derive"], optional = true }
|
|
serde_json = { version = "1.0.134", optional = true }
|
|
time = "0.3.37"
|
|
toml = { version = "0.8.19", optional = true }
|
|
zerocopy = { version = "0.8.14", features = ["derive"] }
|