chiark / gitweb /
Cargo.toml: Update all versions to 1.2.1
[otter.git] / cli / Cargo.toml
1 # Copyright 2020-2021 Ian Jackson and contributors to Otter
2 # SPDX-License-Identifier: AGPL-3.0-or-later
3 # There is NO WARRANTY.
4
5 [package]
6 name="otter-cli"
7 description="Otter game system; command line game management client."
8
9 version="1.2.1"
10 license="AGPL-3.0-or-later"
11 edition="2021"
12 resolver="1" # new resolver crashes!
13 homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/otter/docs/"
14 repository="https://salsa.debian.org/iwj/otter"
15 keywords=["games"]
16 authors=["Ian Jackson <ijackson@chiark.greenend.org.uk>",
17          "and the contributors to Otter"]
18
19 [[bin]]
20 name="otter"
21 path="otter.rs"
22 doc=false
23
24 [dependencies]
25
26 otter.path=".."
27 otter.version="=1.2.1"
28 otter-base.path="../base"
29 otter-base.version="=1.2.1"
30
31 argparse="0.2"
32 directories="4"
33 ron="0.7"
34 walkdir="2.3"
35
36 fehler="1"
37 num-traits="0.2"
38 serde_with="1"
39
40 const-default = { version="1",    features=["derive"      ] }
41 serde        = { version="1"    , features=["derive", "rc"] }
42 strum        = { version="0.24" , features=["derive"      ] }
43
44 #fin.