DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: bf7a23bf54d4ccf81abf745a8dc8adae6e0ee455 deck-builder/sdbclient/Cargo.toml -rw-r--r-- 719 bytes
bf7a23bfJonni Liljamo Print API check to console instead of stdout 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
26
[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"
bevy_console = "0.5.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"