forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (30 loc) · 1.15 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
[package]
name = "amethyst_input"
version = "0.11.0"
authors = ["Rhuagh <[email protected]>", "Xaeroxe <[email protected]>", "Amethyst Foundation <[email protected]>"]
edition = "2018"
description = "Input rebinding "
documentation = "https://docs.amethyst.rs/stable/amethyst_input/"
homepage = "https://amethyst.rs/"
repository = "https://github.com/amethyst/amethyst"
license = "MIT/Apache-2.0"
[badges]
travis-ci = { repository = "amethyst/amethyst" }
[dependencies]
amethyst_core = { path = "../amethyst_core", version = "0.10.0" }
amethyst_error = { path = "../amethyst_error", version = "0.5.0" }
amethyst_config = { path = "../amethyst_config/", version = "0.14.0" }
amethyst_window = { path = "../amethyst_window", version = "0.5.0" }
derivative = "2.1.1"
derive-new = "0.5"
fnv = "1"
serde = { version = "1", features = ["derive"] }
winit = { version = "0.19", features = ["serde"] }
sdl2 = { version = "0.33", optional = true }
smallvec = { version = "1.2", features = ["serde"] }
thread_profiler = { version = "0.3", optional = true }
[dev-dependencies]
approx = "0.3"
[features]
profiler = [ "thread_profiler/thread_profiler" ]
sdl_controller = ["sdl2"]