chiark / gitweb /
Cargo.toml: Update all versions to 1.2.1
[otter.git] / base / 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-base"
7 description="Otter game system; WASM/hostside common code crate."
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 [lib]
20 name="otter_base"
21 path="lib.rs"
22
23
24 [dependencies]
25
26 arrayvec="0.7"
27 derive_more="0.99"
28 extend="1"
29 htmlescape="0.3"
30 if_chain = "1"
31 itertools="0.10"
32 num-derive="0.3"
33 num-traits="0.2"
34 serde_json="1"
35 void="1"
36
37 # Repeated in other Cargo.toml's because importing does not work properly
38 fehler="1"
39 serde = { version = "1", features = ["derive","rc"] }
40 serde_with="1"
41 thiserror="1"
42
43 #fin.