DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

a973640bcfd86572fc8642dfcd0a84d3e9d3a1aa — Jonni Liljamo 1 year, 9 months ago db6de81
lightweight futures and reqwest blocking deps
2 files changed, 27 insertions(+), 1 deletions(-)

M Cargo.lock
M sdbclient/Cargo.toml
M Cargo.lock => Cargo.lock +24 -0
@@ 1595,9 1595,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
dependencies = [
 "futures-core",
 "futures-io",
 "futures-task",
 "memchr",
 "pin-project-lite",
 "pin-utils",
 "slab",
]

[[package]]


@@ 1838,6 1841,15 @@ dependencies = [
]

[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
 "libc",
]

[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"


@@ 2581,6 2593,16 @@ dependencies = [
]

[[package]]
name = "num_cpus"
version = "1.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
dependencies = [
 "hermit-abi",
 "libc",
]

[[package]]
name = "num_enum"
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"


@@ 3084,6 3106,7 @@ dependencies = [
 "bevy",
 "bevy-inspector-egui",
 "bevy_egui",
 "futures-lite",
 "reqwest",
 "serde",
 "serde_json",


@@ 3433,6 3456,7 @@ dependencies = [
 "libc",
 "memchr",
 "mio",
 "num_cpus",
 "pin-project-lite",
 "socket2",
 "windows-sys 0.42.0",

M sdbclient/Cargo.toml => sdbclient/Cargo.toml +3 -1
@@ 17,7 17,9 @@ bevy_egui = "0.17"
bevy-inspector-egui = "0.14.0"

# http requests
reqwest = { version = "0.11.13", features = ["json"] }
reqwest = { version = "0.11.13", features = ["blocking", "json"] }

serde = { version = "1.0.151", features = ["derive"] }
serde_json = "1.0.91"

futures-lite = "1.12.0"