DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 8a4aaa84f011949ee415cab2e93e70fbc2bd9df5 deck-builder/sdbclient/Cargo.toml -rw-r--r-- 696 bytes
8a4aaa84Jonni Liljamo Fix comment 1 year, 9 months ago
                                                                                
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
[package]
name = "sdbclient"
version = "0.1.0"
authors = ["Jonni Liljamo <jonni@liljamo.com>"]
edition = "2021"
description = "Client for a deck building game"
readme = "README.md"
repository = "https://src.quest/skye/deck-builder"
license = "GPL-3.0-only"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bevy = { version = "0.9.1" }
# 0.18.0 breaks inspector, but not a major issue right now
bevy_egui = "0.17"
bevy-inspector-egui = "0.14.0"

# http requests
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"