]> git.g-eek.se Git - ranknauto.git/commitdiff
Sys. Add dependency on statrs
authorGustav Eek <gustav.eek@fripost.org>
Wed, 25 Jan 2023 06:52:25 +0000 (07:52 +0100)
committerGustav Eek <gustav.eek@fripost.org>
Wed, 25 Jan 2023 06:52:25 +0000 (07:52 +0100)
Cargo.toml
Makefile
README

index 03043106f91b0b7b8d0bd823f398b58d46be9477..2132b73bd386c74057aa11cef986f97b0fad37ba 100644 (file)
@@ -9,3 +9,4 @@ authors = ["Gustav Eek <gustav.eek@fripost.org>"]
 edition = "2018"
 
 [dependencies]
+statrs = "0.15"
index d7418c2d218751d0888e2e2a59dab0b6aa21b3fb..377cfb74a7d1e215637e7d151cdb210460d3f827 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
 
 PRJ := $(notdir $(PWD))
 
-.PHONY: release test install
+.PHONY: release install uninstall test reuse clean
 
 # Build
 
@@ -32,11 +32,16 @@ uninstall:
 
 # Test
 
-test:
+test: reuse
        cargo build
        cargo check
+       cargo doc
+
+reuse:
+       ! which reuse > /dev/null || reuse lint | grep Congrat || reuse lint
 
 # Clean
 
 clean:
        rm -fr target
+       find * -name \*~ -delete
diff --git a/README b/README
index 9d8703864d1ef3ec2f8e0600e26a932428dd6e08..25fbf9f1ccdb663525ba33666ffb557ca0008d38 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,3 @@
-<!-- Copyright (C) 2023 Gustav Eek <gustav.eek@fripost.org>
-SPDX-License-Identifier: GPL-3.0-or-later -->
-
 *ranknauto* -- Rank N' Auto, automatic normalized ranking
 
 Quantify a ranked ordered from statistical distributions.
@@ -55,3 +52,5 @@ Unless explicitly stated otherwise, any contribution intentionally
 submitted for inclusion is released under the GNU GPL v3 or later,
 without any additional terms or conditions.
 
+<!-- Copyright (C) 2023 Gustav Eek <gustav.eek@fripost.org>
+SPDX-License-Identifier: GPL-3.0-or-later -->