mirror of
https://github.com/iDescriptor/iDescriptor.git
synced 2026-06-21 19:35:49 +08:00
fix Windows build
This commit is contained in:
@@ -18,6 +18,14 @@
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
/* required for mingw64 */
|
||||
#ifdef WIN32
|
||||
#include <cstdint>
|
||||
using u_int8_t = uint8_t;
|
||||
using u_int16_t = uint16_t;
|
||||
using u_int32_t = uint32_t;
|
||||
using u_int64_t = uint64_t;
|
||||
#endif
|
||||
#include <QDebug>
|
||||
#include <QImage>
|
||||
#include <QJsonObject>
|
||||
|
||||
Generated
+1
@@ -1208,6 +1208,7 @@ version = "0.37.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b1f111c8c41e7c61a49cd34e44c7619462967221a6443b0ec299e0ac30cfb9b1"
|
||||
dependencies = [
|
||||
"cc",
|
||||
"pkg-config",
|
||||
"vcpkg",
|
||||
]
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@ once_cell = "1.21.4"
|
||||
regex = "1.12.3"
|
||||
urlencoding = "2.1.3"
|
||||
serde_json = "1.0.149"
|
||||
rusqlite = "0.39.0"
|
||||
rusqlite = { version = "0.39.0", features = ["bundled"] }
|
||||
|
||||
|
||||
[build-dependencies]
|
||||
|
||||
Reference in New Issue
Block a user