# SPDX-FileCopyrightText: 2021-2022 Robin Krahl # SPDX-License-Identifier: CC0-1.0 [workspace] members = [ "ctaphid-types", ] [package] name = "ctaphid" version = "0.3.1" edition = "2018" license = "Apache-2.0 OR MIT" description = "Rust implementation of the CTAPHID protocol" repository = "https://git.sr.ht/~ireas/ctaphid-rs" exclude = ["build.yml"] keywords = ["ctap", "hid"] [dependencies] ctaphid-types = { version = "0.2.0", path = "ctaphid-types" } hex = "0.4.3" hidapi = { version = "1.2.6", default-features = false, optional = true } log = "0.4.14" rand_core = { version = "0.6.3", features = ["getrandom"] } tap = "1.0.1" [features] default = ["hidapi"] [dev-dependencies] env_logger = "0.9.0" hidapi = { version = "1.2.6", default-features = false, features = ["linux-static-hidraw"] } serde_cbor = "0.11.2" once_cell = "1.13.0"