-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 902 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "rusotp"
version = "0.2.0"
authors = ["indrajit"]
edition = "2021"
rust-version = "1.60.0"
description = "Rust implementation of the HOTP and TOTP algorithms"
documentation = "https://docs.rs/rusotp"
readme = "README.md"
homepage = "https://eendroroy.github.io/rusotp"
repository = "https://github.com/eendroroy/rusotp"
license = "AGPL-3.0"
keywords = ["otp", "hotp", "totp", "RFC4226", "RFC6238"]
categories = ["authentication", "algorithms"]
exclude = ["/tests", "/examples", "/c_examples", "/c_examples.sh"]
[lib]
name = "rusotp"
path = "src/lib.rs"
edition = "2021"
crate-type = ["staticlib", "lib", "cdylib"]
[dependencies]
hmac = "=0.12.1"
sha2 = "=0.10.8"
num-bigint = "=0.4.6"
urlencoding = "=2.1.3"
sha1 = "=0.10.6"
[dev-dependencies]
criterion = "=0.5.1"
itertools = "=0.14.0"
[features]
html_reports = ["criterion/html_reports"]
[[bench]]
name = "hotp"
harness = false