diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-02-09 08:27:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 08:27:39 +0100 |
commit | fd4712accb319cd0084f7e97fea4d9d1299d8938 (patch) | |
tree | e63d4f8a3a3168e01b42b5cc4c103f79b28a10bc /src-tauri/Cargo.lock | |
parent | 7df1f2dbc038d0d93463249f15ca2e1e7ec23094 (diff) | |
download | FlightCore-fd4712accb319cd0084f7e97fea4d9d1299d8938.tar.gz FlightCore-fd4712accb319cd0084f7e97fea4d9d1299d8938.zip |
feat: Add version number to user-agent (#173)
* feat: Add version number to user-agent
Uses a crate that allows for formatting at compile time.
* fix: Add comment
Diffstat (limited to 'src-tauri/Cargo.lock')
-rw-r--r-- | src-tauri/Cargo.lock | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 2c04ae71..266d40cc 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -92,6 +92,7 @@ dependencies = [ "anyhow", "async-recursion", "chrono", + "const_format", "game-scanner", "json5", "libthermite", @@ -461,6 +462,26 @@ dependencies = [ ] [[package]] +name = "const_format" +version = "0.2.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7309d9b4d3d2c0641e018d449232f2e28f1b22933c137f157d3dbc14228b8c0e" +dependencies = [ + "const_format_proc_macros", +] + +[[package]] +name = "const_format_proc_macros" +version = "0.2.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d897f47bf7270cf70d370f8f98c1abb6d2d4cf60a6845d30e05bfb90c6568650" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] name = "constant_time_eq" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4238,6 +4259,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" [[package]] +name = "unicode-xid" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" + +[[package]] name = "untrusted" version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" |