-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
38 lines (32 loc) · 1.23 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "bevy_mod_reqwest"
description = "Bevy http client using reqwest, with a focus on simple usage within the bevy runtime"
version = "0.18.0"
edition = "2021"
readme = "README.md"
authors = ["Kristoffer Ödmark <[email protected]>"]
repository = "https://github.com/TotalKrill/bevy_mod_reqwest.git"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["rustls-tls", "json"]
default-tls = ["reqwest/default-tls"]
json = ["reqwest/json", "serde_json"]
rustls-tls = ["reqwest/rustls-tls"]
msgpack = ["rmp-serde"]
[dependencies]
reqwest = { version = "0.12", default-features = false }
rmp-serde = { version = "1.1.2", optional = true}
serde = { version = "1.0.159", features = ["derive"] }
serde_json = { version = "1", optional = true }
anyhow = "1.0.79"
bytes = "1.6.0"
futures-lite = "2.3.0"
[dependencies.bevy]
version = "0.15"
# git = "https://github.com/bevyengine/bevy"
default-features = false
[target.'cfg(target_arch = "wasm32")'.dependencies]
crossbeam-channel = "0.5.7"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
async-compat = "0.2.1"