From: Ian Jackson Date: Sun, 18 Apr 2021 20:07:29 +0000 (+0100) Subject: Cargo.toml: Add many metadata fields (and synch. versions) X-Git-Tag: otter-0.5.0~14 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c28976b8a00372822c8c0078b8d1dccf11b61869;p=otter.git Cargo.toml: Add many metadata fields (and synch. versions) Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock b/Cargo.lock index f35a2a7c..269d3630 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2241,7 +2241,7 @@ dependencies = [ [[package]] name = "otter-api-tests" -version = "0.0.1" +version = "0.3.0" dependencies = [ "ego-tree", "fehler", @@ -2257,7 +2257,7 @@ dependencies = [ [[package]] name = "otter-base" -version = "0.0.1" +version = "0.3.0" dependencies = [ "arrayvec", "derive_more", @@ -2277,7 +2277,7 @@ dependencies = [ [[package]] name = "otter-daemon" -version = "0.0.1" +version = "0.3.0" dependencies = [ "fehler", "num-traits", @@ -2294,7 +2294,7 @@ dependencies = [ [[package]] name = "otter-wasm" -version = "0.0.1" +version = "0.3.0" dependencies = [ "console_error_panic_hook", "fehler", @@ -2307,7 +2307,7 @@ dependencies = [ [[package]] name = "otter-webdriver-tests" -version = "0.0.1" +version = "0.3.0" dependencies = [ "fehler", "ndarray", diff --git a/Cargo.toml b/Cargo.toml index b73dc033..e1debf30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,16 @@ [package] name="otter" -version="0.3.0" +description="Otter game system; main Rust crate." -authors=["Ian Jackson ", - "and the contributors to Otter"] +version="0.3.0" license="AGPL-3.0-or-later" edition="2018" +homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/otter/docs/" +repository="https://salsa.debian.org/iwj/otter" +keywords=["games"] +authors=["Ian Jackson ", + "and the contributors to Otter"] [workspace] members=["wasm", "daemon", "wdriver", "apitest"] diff --git a/apitest/Cargo.toml b/apitest/Cargo.toml index 5b83a237..b52bf9df 100644 --- a/apitest/Cargo.toml +++ b/apitest/Cargo.toml @@ -4,12 +4,16 @@ [package] name="otter-api-tests" -version="0.0.1" +description="Otter game system; API tests crates." -authors=["Ian Jackson ", - "and the contributors to Otter"] +version="0.3.0" license="AGPL-3.0-or-later" edition="2018" +homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/otter/docs/" +repository="https://salsa.debian.org/iwj/otter" +keywords=["games"] +authors=["Ian Jackson ", + "and the contributors to Otter"] [lib] name="otter_api_tests" diff --git a/base/Cargo.toml b/base/Cargo.toml index 17708c43..60b05a24 100644 --- a/base/Cargo.toml +++ b/base/Cargo.toml @@ -4,12 +4,16 @@ [package] name = "otter-base" -version = "0.0.1" - -authors = ["Ian Jackson ", - "and the contributors to Otter"] -license = "AGPL-3.0-or-later" -edition = "2018" +description="Otter game system; WASM/hostside common code crate." + +version="0.3.0" +license="AGPL-3.0-or-later" +edition="2018" +homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/otter/docs/" +repository="https://salsa.debian.org/iwj/otter" +keywords=["games"] +authors=["Ian Jackson ", + "and the contributors to Otter"] [lib] name = "otter_base" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 9cb13b5c..76562ddb 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -4,12 +4,16 @@ [package] name="otter-daemon" -version="0.0.1" +description="Otter game system; server executable crate." -authors=["Ian Jackson ", - "and the contributors to Otter"] +version="0.3.0" license="AGPL-3.0-or-later" edition="2018" +homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/otter/docs/" +repository="https://salsa.debian.org/iwj/otter" +keywords=["games"] +authors=["Ian Jackson ", + "and the contributors to Otter"] [[bin]] name="daemon-otter" diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 1053503e..f6105972 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -4,12 +4,16 @@ [package] name="otter-wasm" -version="0.0.1" +description="Otter game system; Rust WASM crate." -authors=["Ian Jackson ", - "and the contributors to Otter"] +version="0.3.0" license="AGPL-3.0-or-later" edition="2018" +homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/otter/docs/" +repository="https://salsa.debian.org/iwj/otter" +keywords=["games"] +authors=["Ian Jackson ", + "and the contributors to Otter"] [lib] name="otter_wasm" diff --git a/wdriver/Cargo.toml b/wdriver/Cargo.toml index 880c7285..d8e3ec85 100644 --- a/wdriver/Cargo.toml +++ b/wdriver/Cargo.toml @@ -4,12 +4,16 @@ [package] name="otter-webdriver-tests" -version="0.0.1" +description="Otter game system; API tests crate." -authors=["Ian Jackson ", - "and the contributors to Otter"] +version="0.3.0" license="AGPL-3.0-or-later" edition="2018" +homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/otter/docs/" +repository="https://salsa.debian.org/iwj/otter" +keywords=["games"] +authors=["Ian Jackson ", + "and the contributors to Otter"] [[bin]] name="wdriver"