summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: d4e11793574b1d4833a9e89441800cc561731d96 (plain)
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
# -*- coding: utf-8 -*-

[package]
edition         = "2018"
name            = "wolfsmuehle"
description     = "Wolfsmühle - Board game"
version         = "1.1.0"
homepage        = "https://bues.ch/"
license         = "GPL-2.0-or-later"
readme          = "README.md"
repository      = "https://bues.ch/cgit/wolfsmuehle.git"
authors         = ["Michael Buesch <m@bues.ch>"]

categories      = []
keywords        = ["boardgame"]
publish         = false

exclude         = ["/maintenance/"]

[features]
default         = ["gui", "server"]
gui             = ["cairo-rs", "expect-exit", "gdk", "gdk-pixbuf", "gio", "glib", "gtk"]
server          = []

[dependencies]
anyhow          = "1"
itertools       = "0.10"
lazy_static     = "1"
rand            = "0.8"
structopt       = "0.3"

cairo-rs        = { version = "0.16", optional = true }
expect-exit     = { version = "0.5", optional = true }
gdk             = { version = "0.16", optional = true }
gdk-pixbuf      = { version = "0.16", optional = true }
gio             = { version = "0.16", optional = true }
glib            = { version = "0.16", optional = true }
gtk             = { version = "0.16", optional = true }

[profile.release]
lto             = "thin"
overflow-checks = true

# vim: ts=4 sw=4 expandtab
bues.ch cgit interface