|
@@ -49,7 +49,7 @@ targets = [
|
|
|
normal = [ "reqwest" ]
|
|
|
|
|
|
[dependencies]
|
|
|
-serde_json = { version = "1.0", features = [ "raw_value" ] }
|
|
|
+serde_json = { version = "1.0", features = [ "raw_value", "preserve_order" ] }
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
|
tokio = { version = "1", features = [ "rt", "rt-multi-thread", "sync", "fs", "io-util" ] }
|
|
|
futures-util = "0.3"
|
|
@@ -95,6 +95,7 @@ ico = { version = "0.2.0", optional = true }
|
|
|
encoding_rs = "0.8.31"
|
|
|
sys-locale = { version = "0.2.3", optional = true }
|
|
|
tracing = { version = "0.1", optional = true }
|
|
|
+indexmap = { version = "1", features = [ "std", "serde" ], optional = true }
|
|
|
|
|
|
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
|
|
|
rfd = { version = "0.10", optional = true, features = [ "gtk3", "common-controls-v6" ] }
|
|
@@ -156,7 +157,7 @@ updater = [
|
|
|
"dialog-ask",
|
|
|
"fs-extract-api"
|
|
|
]
|
|
|
-http-api = [ "reqwest", "bytes" ]
|
|
|
+http-api = [ "reqwest", "bytes", "indexmap" ]
|
|
|
http-multipart = [ "reqwest/multipart" ]
|
|
|
os-api = [ "sys-locale" ]
|
|
|
shell-open-api = [ "open", "regex", "tauri-macros/shell-scope" ]
|