diff --git a/Cargo.lock b/Cargo.lock index c5ca6f5..430a24b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,9 +19,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cpufeatures" -version = "0.2.12" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" dependencies = [ "libc", ] @@ -38,9 +38,9 @@ dependencies = [ [[package]] name = "data-encoding" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" +checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" [[package]] name = "digest" @@ -83,13 +83,13 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.153" +version = "0.2.162" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398" [[package]] name = "minotp" -version = "1.1.0" +version = "1.3.0" dependencies = [ "data-encoding", "hmac", @@ -132,9 +132,9 @@ dependencies = [ [[package]] name = "subtle" -version = "2.5.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "typenum" @@ -144,6 +144,6 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "version_check" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" diff --git a/Cargo.toml b/Cargo.toml index 15d66f7..944f5f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,26 +1,26 @@ [package] name = "minotp" -version = "1.2.0" +version = "1.3.0" edition = "2021" -description = "Dead simple OTP library for Rust." +description = "Simple OTP library for Rust." authors = ["Charles Dong "] -license = "MIT OR Apache-2.0" +license = "MIT" keywords = ["otp", "hotp", "totp", "password"] categories = ["cryptography", "no-std"] readme = "README.md" -repository = "https://github.com/chardon55/minotp.git" -homepage = "https://github.com/chardon55/minotp" +repository = "https://github.com/chardoncs/minotp.git" +homepage = "https://github.com/chardoncs/minotp" [dependencies] hmac = "0.12" [dev-dependencies] -data-encoding = "2.5.0" +data-encoding = "2.6" sha1 = { version = "0.10", default-features = false } sha2 = { version = "0.10", default-features = false } sha3 = { version = "0.10", default-features = false }