hermes-android/hermes-pair/Cargo.toml
dependabot[bot] c85eb98a27
chore(deps): bump rand from 0.8.7 to 0.10.2 in /hermes-pair
Bumps [rand](https://github.com/rust-random/rand) from 0.8.7 to 0.10.2.
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-random/rand/compare/0.8.7...0.10.2)

---
updated-dependencies:
- dependency-name: rand
  dependency-version: 0.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-08-24 15:54:02 +00:00

34 lines
1 KiB
TOML

[package]
name = "hermes-pair"
version = "0.1.0"
edition = "2021"
authors = ["ochenstarik-ui"]
description = "Fast, secure QR onboarding helper for Hermes Agent"
[lib]
name = "hermes_pair"
path = "src/lib.rs"
[[bin]]
name = "hermes-pair"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.43", features = ["full"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
qrcode = { version = "0.14", default-features = false }
image = { version = "0.25", default-features = false, features = ["png"] }
rand = "0.10"
uuid = { version = "1.13", features = ["v4", "serde"] }
dirs = "6.0"
clap = { version = "4.5", features = ["derive"] }
eframe = { version = "0.31", default-features = false, features = ["default_fonts", "glow", "wayland", "x11"] }
base64 = "0.22"
if-addrs = "0.13"
chrono = { version = "0.4", features = ["serde"] }
url = { version = "2.5", features = ["serde"] }
[dev-dependencies]
tokio = { version = "1.43", features = ["full"] }