DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 6c25443179efa0c60c5d04b1576344e253333985 deck-builder/sdbclient/Cargo.toml -rw-r--r-- 659 bytes
6c254431Jonni Liljamo Reqwest and serde deps 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
[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 = ["json"] }

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