DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: a8f056d1523e00e69662e2868f3976103ead82ff deck-builder/sdbclient/Cargo.toml -rw-r--r-- 742 bytes
a8f056d1Jonni Liljamo Move register/login to plugins, implement mostly 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
27
28
[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"

directories = "4.0.1"