mirror of
https://github.com/trussed-dev/trussed-auth.git
synced 2026-06-20 04:16:21 -07:00
35 lines
1.3 KiB
TOML
35 lines
1.3 KiB
TOML
# Copyright (C) Nitrokey GmbH
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
[package]
|
|
name = "trussed-auth"
|
|
version = "0.3.0"
|
|
authors = ["Nitrokey GmbH <info@nitrokey.com>"]
|
|
edition = "2021"
|
|
repository = "https://github.com/trussed-dev/trussed-auth"
|
|
license = "Apache-2.0 OR MIT"
|
|
description = "Authentication extension and backend for Trussed"
|
|
|
|
[dependencies]
|
|
chacha20poly1305 = { version = "0.10.1", default-features = false, features = ["reduced-round"] }
|
|
hkdf = "0.12.3"
|
|
hmac = "0.12.1"
|
|
rand_core = "0.6.4"
|
|
salty = { version = "0.3.0", default-features = false }
|
|
serde = { version = "1", default-features = false }
|
|
serde-byte-array = "0.1.2"
|
|
sha2 = { version = "0.10.6", default-features = false }
|
|
subtle = { version = "2.4.1", default-features = false }
|
|
trussed = { version = "0.1.0", features = ["serde-extensions"] }
|
|
|
|
[dev-dependencies]
|
|
quickcheck = { version = "1.0.3", default-features = false }
|
|
rand_core = { version = "0.6.4", default-features = false, features = ["getrandom"] }
|
|
serde_test = "1.0.176"
|
|
trussed = { version = "0.1.0", features = ["serde-extensions", "virt"] }
|
|
serde_cbor = { version = "0.11.2", features = ["std"] }
|
|
|
|
[patch.crates-io]
|
|
littlefs2 = { git = "https://github.com/Nitrokey/littlefs2", tag = "v0.3.2-nitrokey-2" }
|
|
trussed = { git = "https://github.com/trussed-dev/trussed.git", rev = "df720980888e3e0d5487250bd14a28db02a5f13b" }
|