forked from Ralith/hypermine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
53 lines (48 loc) · 1.49 KB
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
48
49
50
51
52
53
[package]
name = "client"
version = "0.1.0"
authors = ["Benjamin Saunders <ben.e.saunders@gmail.com>"]
edition = "2018"
publish = false
license = "Apache-2.0 OR Zlib"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
common = { path = "../common" }
server = { path = "../server" }
tracing = "0.1.10"
ash = { version = "0.37.0", features = ["loaded"] }
lahar = { git = "https://github.com/Ralith/lahar", rev = "88abd75e41d04c3a4199d95f581cb135f5962844" }
winit = "0.26.1"
ash-window = "0.10.0"
directories = "4.0.1"
vk-shader-macros = "0.2.5"
na = { package = "nalgebra", version = "0.19" }
tokio = { version = "1.18.2", features = ["rt-multi-thread", "sync", "macros"] }
png = "0.17.5"
anyhow = "1.0.26"
whoami = "1.2.1"
serde = { version = "1.0.104", features = ["derive", "rc"] }
toml = "0.5.5"
fxhash = "0.2.1"
downcast-rs = "1.1.1"
quinn = "0.8.3"
futures-util = "0.3.1"
rustls = { version = "0.20.6", features = ["dangerous_configuration"] }
webpki = "0.21.0"
hecs = "0.9.0"
rcgen = { version = "0.9.2", default-features = false }
memoffset = "0.6"
gltf = { version = "1.0.0", default-features = false, features = ["utils"] }
metrics = { version = "0.12.1", features = ["std"] }
metrics-core = "0.5.2"
hdrhistogram = { version = "7", default-features = false }
[features]
default = ["use-repo-assets"]
use-repo-assets = []
[dev-dependencies]
approx = "0.3.2"
bencher = "0.1.5"
renderdoc = "0.10.1"
[[bench]]
name = "surface_extraction"
harness = false