-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1.09 KB
/
Cargo.toml
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
[package]
name = "sietor"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
copypasta = { version = "0.7.0", default-features = false }
gl = { path = "lib/gl" }
log = { version= "0.4.14", features = ["max_level_trace"]}
env_logger = "0.9.0"
failure = "0.1.8"
render_derive = { path = "render_derive" }
#vec-2-10-10-10 = "0.1.2"
nalgebra = "0.30.1"
image = "0.23.14"
rusttype = { version = "0.9.2", features = [ "gpu_cache" ] }
glium = "0.27"
regex = "1.6.0"
syntect = "5.0.0"
#parry2d = "*"
#parry3d = "*"
#rapier2d = { version = "*", features = [ "simd-stable" ] }
#rapier3d = { version = "*", features = [ "simd-stable" ] }
[target.'cfg(not(any(target_os="windows", target_os="macos")))'.dependencies]
x11-dl = { version = "2", optional = true }
wayland-client = { version = "0.29.0", features = ["dlopen"], optional = true }
[features]
default = ["wayland", "x11"]
x11 = ["copypasta/x11", "x11-dl"]
wayland = ["copypasta/wayland", "wayland-client"]
gl_debug = ["gl/debug"]
[build-dependencies]
walkdir = "2.1"