chiark / gitweb /
Cargo.toml: Update all versions to 1.2.1
[otter.git] / wasm / 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-wasm"
7 description="Otter game system; Rust WASM 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_wasm"
21 path="wasm.rs"
22 crate-type=["cdylib"]
23
24 [build-dependencies]
25 wasm-bindgen-cli="0.2"
26
27
28 [dependencies]
29
30 otter-base.path="../base"
31 otter-base.version="=1.2.1"
32
33 console_error_panic_hook="0.1"
34 fehler="1"
35 js-sys="0.3"
36
37 wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
38
39 #fin.