Compare commits
2
Commits
v1.0.0-rc.0
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0d257aaf78
|
||
|
|
0e9eeb10b2
|
+11
-5
@@ -1,6 +1,12 @@
|
|||||||
.vs
|
# Generated by Cargo
|
||||||
.vscode/
|
# will have compiled files and executables
|
||||||
src/.DS_Store
|
debug/
|
||||||
/target
|
target/
|
||||||
Cargo.lock
|
pkg/
|
||||||
|
demo/
|
||||||
|
|
||||||
|
# These are backup files generated by rustfmt
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
|
|
||||||
|
# MSVC Windows builds of rustc generate these, which store debugging information
|
||||||
|
*.pdb
|
||||||
|
|||||||
Generated
+1903
File diff suppressed because it is too large
Load Diff
+4
-4
@@ -42,7 +42,7 @@ argon2 = { version = "0.6.0-rc.8", default-features = false, features = [
|
|||||||
"zeroize",
|
"zeroize",
|
||||||
"alloc",
|
"alloc",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
curve25519-dalek = { version = "5.0.0-rc.1", default-features = false, features = [
|
curve25519-dalek = { version = "5", default-features = false, features = [
|
||||||
"zeroize",
|
"zeroize",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
derive-where = { version = "1.6", features = ["zeroize-on-drop"] }
|
derive-where = { version = "1.6", features = ["zeroize-on-drop"] }
|
||||||
@@ -51,7 +51,7 @@ displaydoc = { version = "0.2", default-features = false }
|
|||||||
ecdsa = { version = "0.17", default-features = false, features = [
|
ecdsa = { version = "0.17", default-features = false, features = [
|
||||||
"algorithm",
|
"algorithm",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
ed25519-dalek = { version = "3.0.0-rc.1", default-features = false, features = [
|
ed25519-dalek = { version = "3", default-features = false, features = [
|
||||||
"zeroize",
|
"zeroize",
|
||||||
"digest",
|
"digest",
|
||||||
"hazmat",
|
"hazmat",
|
||||||
@@ -85,13 +85,13 @@ criterion = "0.8"
|
|||||||
cryptoki = "0.12"
|
cryptoki = "0.12"
|
||||||
elliptic-curve = { version = "0.14", features = ["alloc", "pkcs8"] }
|
elliptic-curve = { version = "0.14", features = ["alloc", "pkcs8"] }
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
p256 = { version = "0.14.0-rc.15", default-features = false, features = [
|
p256 = { version = "0.14", default-features = false, features = [
|
||||||
"ecdsa",
|
"ecdsa",
|
||||||
"hash2curve",
|
"hash2curve",
|
||||||
"pkcs8",
|
"pkcs8",
|
||||||
"oprf",
|
"oprf",
|
||||||
] }
|
] }
|
||||||
p384 = { version = "0.14.0-rc.15", default-features = false, features = [
|
p384 = { version = "0.14", default-features = false, features = [
|
||||||
"hash2curve",
|
"hash2curve",
|
||||||
"pkcs8",
|
"pkcs8",
|
||||||
"oprf",
|
"oprf",
|
||||||
|
|||||||
Reference in New Issue
Block a user