-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 909 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
[package]
name = "coerceo"
version = "1.0.0"
authors = ["Ryan Huang"]
edition = "2018"
description = "An unofficial clone of a strategic board game."
license = "AGPL-3.0"
[package.metadata.android]
label = "Coerceo"
package_name = "io.github.npn.coerceo"
res = "assets/android_res"
icon = "@mipmap/ic_launcher"
opengles_version_major = 2
opengles_version_minor = 0
fullscreen = true
[package.metadata.bundle]
name = "Coerceo"
identifier = "io.github.npn.coerceo"
icon = ["assets/bundle_icon/64x64.png",
"assets/bundle_icon/128x128.png",
"assets/bundle_icon/256x256.png",
"assets/bundle_icon/512x512.png",
"assets/bundle_icon/[email protected]"]
[dependencies]
glium = { version = "0.25", default-features = true }
imgui = "0.2"
imgui-glium-renderer = "0.2"
imgui-winit-support = "0.2"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "laurentius_perft"
harness = false