-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
44 lines (35 loc) · 907 Bytes
/
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
39
40
41
42
43
44
[package]
name = "gomoku"
version = "0.1.0"
authors = [
"Guillaume Bersac <[email protected]>",
"adjivas <[email protected]>"
]
description = "Game of Gomoku from 42 school"
repository = "https://github.com/gbersac/gomoku_42.git"
build = "build.rs"
[dependencies.piston]
version = "0.13.0"
[dependencies.piston2d-opengl_graphics]
version = "0.14.0"
[dependencies.piston2d-graphics]
version = "0.10.0"
[dependencies.pistoncore-sdl2_window]
version = "0.16.0"
optional = true
[dependencies.pistoncore-glfw_window]
version = "0.12.0"
optional = true
[dependencies.pistoncore-glutin_window]
version = "0.15.0"
optional = true
[features]
default = ["include_sdl2"]
include_sdl2 = ["pistoncore-sdl2_window"]
include_glfw = ["pistoncore-glfw_window"]
include_glutin = ["pistoncore-glutin_window"]
[dependencies.clap]
version = "2"
features = ["yaml"]
[dependencies]
chrono = "0.2.16"