chore(authenticator): Inline u2f crate (#780)

* chore(authenticator): Inline u2f crate

* update chrono

* update rustix

* clippy
This commit is contained in:
Fabian-Lars
2023-11-29 12:56:26 +01:00
committed by GitHub
parent 3f7c4ddc96
commit a67f7cb7c8
15 changed files with 725 additions and 69 deletions
Generated
+24 -63
View File
@@ -219,7 +219,7 @@ dependencies = [
"log",
"parking",
"polling",
"rustix 0.37.25",
"rustix 0.37.27",
"slab",
"socket2",
"waker-fn",
@@ -247,7 +247,7 @@ dependencies = [
"cfg-if",
"event-listener",
"futures-lite",
"rustix 0.37.25",
"rustix 0.37.27",
"signal-hook",
"windows-sys 0.48.0",
]
@@ -368,12 +368,6 @@ dependencies = [
"rustc-demangle",
]
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
[[package]]
name = "base64"
version = "0.13.1"
@@ -665,18 +659,17 @@ dependencies = [
[[package]]
name = "chrono"
version = "0.4.26"
version = "0.4.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
dependencies = [
"android-tzdata",
"iana-time-zone",
"js-sys",
"num-traits",
"serde",
"time 0.1.45",
"wasm-bindgen",
"winapi",
"windows-targets 0.48.1",
]
[[package]]
@@ -2233,7 +2226,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
dependencies = [
"hermit-abi",
"rustix 0.38.7",
"rustix 0.38.8",
"windows-sys 0.48.0",
]
@@ -2523,7 +2516,7 @@ dependencies = [
"dirs-next",
"objc-foundation",
"objc_id",
"time 0.3.20",
"time",
]
[[package]]
@@ -3296,7 +3289,7 @@ dependencies = [
"line-wrap",
"quick-xml 0.29.0",
"serde",
"time 0.3.20",
"time",
]
[[package]]
@@ -3751,9 +3744,9 @@ dependencies = [
[[package]]
name = "rustix"
version = "0.37.25"
version = "0.37.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4eb579851244c2c03e7c24f501c3432bed80b8f720af1d6e5b0e0f01555a035"
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
dependencies = [
"bitflags 1.3.2",
"errno",
@@ -3765,9 +3758,9 @@ dependencies = [
[[package]]
name = "rustix"
version = "0.38.7"
version = "0.38.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "172891ebdceb05aa0005f533a6cbfca599ddd7d966f6f5d4d9b2e70478e70399"
checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f"
dependencies = [
"bitflags 2.3.3",
"errno",
@@ -4005,7 +3998,7 @@ dependencies = [
"serde",
"serde_json",
"serde_with_macros",
"time 0.3.20",
"time",
]
[[package]]
@@ -4296,7 +4289,7 @@ dependencies = [
"smallvec",
"sqlformat",
"thiserror",
"time 0.3.20",
"time",
"tokio",
"tokio-stream",
"tracing",
@@ -4381,7 +4374,7 @@ dependencies = [
"sqlx-core",
"stringprep",
"thiserror",
"time 0.3.20",
"time",
"tracing",
"whoami",
]
@@ -4421,7 +4414,7 @@ dependencies = [
"sqlx-core",
"stringprep",
"thiserror",
"time 0.3.20",
"time",
"tracing",
"whoami",
]
@@ -4444,7 +4437,7 @@ dependencies = [
"percent-encoding",
"serde",
"sqlx-core",
"time 0.3.20",
"time",
"tracing",
"url",
]
@@ -4807,7 +4800,7 @@ dependencies = [
"sha2 0.10.7",
"tauri-utils",
"thiserror",
"time 0.3.20",
"time",
"uuid",
"walkdir",
]
@@ -4832,9 +4825,12 @@ version = "0.0.0"
dependencies = [
"authenticator",
"base64 0.21.2",
"byteorder",
"bytes 0.4.12",
"chrono",
"log",
"once_cell",
"openssl",
"rand 0.8.5",
"rusty-fork",
"serde",
@@ -4842,7 +4838,6 @@ dependencies = [
"sha2 0.10.7",
"tauri",
"thiserror",
"u2f",
]
[[package]]
@@ -4905,7 +4900,7 @@ dependencies = [
"serde_json",
"serde_repr",
"tauri",
"time 0.3.20",
"time",
]
[[package]]
@@ -4957,7 +4952,7 @@ dependencies = [
"sqlx",
"tauri",
"thiserror",
"time 0.3.20",
"time",
"tokio",
]
@@ -5135,7 +5130,7 @@ dependencies = [
"cfg-if",
"fastrand 2.0.0",
"redox_syscall 0.3.5",
"rustix 0.38.7",
"rustix 0.38.8",
"windows-sys 0.48.0",
]
@@ -5186,17 +5181,6 @@ dependencies = [
"once_cell",
]
[[package]]
name = "time"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
dependencies = [
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi",
]
[[package]]
name = "time"
version = "0.3.20"
@@ -5472,23 +5456,6 @@ version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
[[package]]
name = "u2f"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2f285392366190c4d46823458f4543ac0f35174759c78e80c5baa39e1f7aa4f"
dependencies = [
"base64 0.11.0",
"byteorder",
"bytes 0.4.12",
"chrono",
"openssl",
"serde",
"serde_derive",
"serde_json",
"time 0.1.45",
]
[[package]]
name = "uds_windows"
version = "1.0.2"
@@ -5677,12 +5644,6 @@ version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"