Add duct as a dependency

This commit is contained in:
KingRainbow44
2022-07-01 16:24:02 -04:00
parent 5e302ee1ae
commit 3b99b9137a
2 changed files with 36 additions and 2 deletions

37
src-tauri/Cargo.lock generated
View File

@@ -743,6 +743,7 @@ name = "cultivation"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"base64", "base64",
"duct",
"futures-util", "futures-util",
"http", "http",
"hudsucker", "hudsucker",
@@ -964,6 +965,18 @@ dependencies = [
"dtoa", "dtoa",
] ]
[[package]]
name = "duct"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc6a0a59ed0888e0041cf708e66357b7ae1a82f1c67247e1f93b5e0818f7d8d"
dependencies = [
"libc",
"once_cell",
"os_pipe 0.9.2",
"shared_child 0.3.5",
]
[[package]] [[package]]
name = "either" name = "either"
version = "1.6.1" version = "1.6.1"
@@ -2472,6 +2485,16 @@ dependencies = [
"winapi", "winapi",
] ]
[[package]]
name = "os_pipe"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213"
dependencies = [
"libc",
"winapi",
]
[[package]] [[package]]
name = "os_pipe" name = "os_pipe"
version = "1.0.1" version = "1.0.1"
@@ -3520,6 +3543,16 @@ dependencies = [
"lazy_static", "lazy_static",
] ]
[[package]]
name = "shared_child"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6be9f7d5565b1483af3e72975e2dee33879b3b86bd48c0929fccf6585d79e65a"
dependencies = [
"libc",
"winapi",
]
[[package]] [[package]]
name = "shared_child" name = "shared_child"
version = "1.0.0" version = "1.0.0"
@@ -3880,7 +3913,7 @@ dependencies = [
"once_cell", "once_cell",
"open", "open",
"os_info", "os_info",
"os_pipe", "os_pipe 1.0.1",
"percent-encoding", "percent-encoding",
"rand 0.8.5", "rand 0.8.5",
"raw-window-handle", "raw-window-handle",
@@ -3891,7 +3924,7 @@ dependencies = [
"serde_json", "serde_json",
"serde_repr", "serde_repr",
"serialize-to-javascript", "serialize-to-javascript",
"shared_child", "shared_child 1.0.0",
"state", "state",
"tar", "tar",
"tauri-macros", "tauri-macros",

View File

@@ -33,6 +33,7 @@ registry = "1.2.1"
# Program opener. # Program opener.
open = "2.1.2" open = "2.1.2"
duct = "0.13.5"
# Serialization. # Serialization.
serde_json = "1" serde_json = "1"