DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: e15f9bd1b3f734bfbdb7cfb6cf245953b8ff2a47 deck-builder/sdbclient/Cargo.toml -rw-r--r-- 1.4 KiB
e15f9bd1Jonni Liljamo chore(sdbclient): iyes_loopless and belly deps 1 year, 8 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[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]
# one dep needs ^0.5.9, and another one needs ^0.5.10
# and for some reason cargo can't figure this out, so we're forcing it for now.
toml = "0.5.11"

bevy = { version = "0.9.1" }
bevy-inspector-egui = "0.17.0"

# NOTE: using own branch till pr goes through
#bevy_console = "0.6.0"
bevy_console = { git = "https://github.com/QuendirSkye/bevy-console", branch = "bump-bevy-egui" }

# lua scripting
bevy_mod_scripting = { version = "0.2.1", features = ["lua", "lua54", "lua_script_api"] }

# better stage management
# NOTE: most likely not needed when bevy 0.10.0 comes around
iyes_loopless = "0.9.1"

# better ui
# NOTE: locked into a commit, since they don't have a crates.io release yet
belly = { git = "https://github.com/jkb0o/belly", rev = "73086dd" }

# http requests
reqwest = { version = "0.11.13", features = ["blocking", "json"] }

# (de)serialization
serde = { version = "1.0.151", features = ["derive"] }
serde_json = "1.0.91"

# futures for async
futures-lite = "1.12.0"

# get dirs for saving data
directories = "4.0.1"