-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 692 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 692 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 = "rubik"
authors = ["Alan Sartorio"]
description = "A keyboard driven virtual Rubik's cube made in rust."
homepage = "https://github.com/alansartorio/rubik"
repository = "https://github.com/alansartorio/rubik"
license = "MIT"
version = "1.2.0"
edition = "2018"
default-run = "rubik"
[[bin]]
name = "solver"
[[bin]]
name = "scrambler"
[[bin]]
name = "animate"
[[bin]]
name = "rubik"
path = "src/bin/simulator.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
glium = "*"
cgmath = "*"
enum-map = "*"
rand = "*"
glium-glyph = "*"
stopwatch = "*"
strum = "*"
strum_macros = "*"
bimap = "*"
lazy_static = "*"