chiark / gitweb /
Cargo.toml: Update all versions to 1.2.1
[otter.git] / daemon / 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-daemon"
7 description="Otter game system; server executable 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 [[bin]]
20 name="daemon-otter"
21 path="main.rs"
22
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 fehler="1"
32 futures="0.3"
33 num-traits="0.2"
34 serde_with="1"
35 structopt="0.3"
36
37 ansi_term="0.12"
38 mime = "0.3"
39 actix-web = "4"
40 actix-files = "0.6"
41 actix-cors = "0.6"
42
43 tokio        = { version="1",     features=["full","parking_lot"] }
44
45 serde        = { version="1"    , features=["derive", "rc"] }
46 strum        = { version="0.24" , features=["derive"      ] }
47
48 #fin.