Moved dependencies around

pull/7/head
Benedikt Terhechte 3 years ago
parent 221672fcf8
commit 108d6d31e8

3
Cargo.lock generated

@ -740,8 +740,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"js-sys",
"libc", "libc",
"wasi", "wasi",
"wasm-bindgen",
] ]
[[package]] [[package]]
@ -1646,6 +1648,7 @@ dependencies = [
"crossbeam-channel", "crossbeam-channel",
"eframe", "eframe",
"eyre", "eyre",
"getrandom",
"image", "image",
"num-format", "num-format",
"objc", "objc",

@ -14,11 +14,9 @@ once_cell = "1.8.0"
crossbeam-channel = "0.5.1" crossbeam-channel = "0.5.1"
eframe = "0.15.0" eframe = "0.15.0"
num-format = "0.4.0" num-format = "0.4.0"
tinyfiledialogs = "3.0"
rand = "0.8.4" rand = "0.8.4"
image = { version = "0.23", default-features = false, features = ["png"] } image = { version = "0.23", default-features = false, features = ["png"] }
chrono = "0.4.19" chrono = "0.4.19"
shellexpand = "2.1.0"
ps-core = { path = "../ps-core" } ps-core = { path = "../ps-core" }
[target."cfg(target_os = \"macos\")".dependencies.cocoa] [target."cfg(target_os = \"macos\")".dependencies.cocoa]
@ -28,5 +26,10 @@ version = "0.2.7"
[target."cfg(not(target_arch = \"wasm32\"))".dependencies] [target."cfg(not(target_arch = \"wasm32\"))".dependencies]
ps-importer = { path = "../ps-importer" } ps-importer = { path = "../ps-importer" }
# Do I need this?
ps-database = { path = "../ps-database" } ps-database = { path = "../ps-database" }
shellexpand = "2.1.0"
tinyfiledialogs = "3.0"
[target."cfg(target_arch = \"wasm32\")".dependencies]
# https://docs.rs/getrandom/latest/getrandom/#webassembly-support
getrandom = { version = "0.2", features = ["js"] }

Loading…
Cancel
Save