-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 852 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 852 Bytes
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
[package]
name = "eternalreckoning-client"
version = "0.2.0"
authors = ["Henry Carlson <henry.carlson@gmail.com>"]
edition = "2018"
[features]
default = [
"rendy/init",
"rendy/init-winit",
"rendy/vulkan",
"rendy/texture-image",
"rendy/texture-palette",
]
[dependencies]
eternalreckoning-core = { git = "https://github.com/EternalReckoning/core", tag = "v0.2.1" }
eternalreckoning-ui = { git = "https://github.com/EternalReckoning/ui", tag = "v0.1.0" }
bitflags = "1.2"
bmp = "0.5"
bytes = "0.4"
circular-queue = "0.2"
failure = "0.1"
failure_derive = "0.1"
futures = "0.1"
gfx-hal = "0.4"
lazy_static = "1.4"
log = "0.4"
nalgebra = "0.19"
rendy = { git = "https://github.com/amethyst/rendy" }
serde = { version = "1.0", features = ["derive"] }
specs = "0.15"
tokio = "0.1"
tokio-dns-unofficial = "0.4"
uuid = "0.8"
winit = "0.20"