summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2021-06-12 15:14:03 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2021-06-12 15:14:03 +0100
commitc18796db698cb686a89c5dec049dd8c9896481ea (patch)
tree397a56b756a8c25e4903f3329730deba6d0947c4
parent56ad5f7ba657a1cb70d5d74da6514582df18c62e (diff)
downloadsubplot-c18796db698cb686a89c5dec049dd8c9896481ea.tar.gz
chore: update Cargo.tomls for release
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
-rw-r--r--Cargo.lock7
-rw-r--r--Cargo.toml2
-rw-r--r--subplotlib-derive/Cargo.toml11
-rw-r--r--subplotlib/Cargo.toml13
4 files changed, 26 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a206965..87c416c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -789,10 +789,11 @@ dependencies = [
[[package]]
name = "remove_dir_all"
-version = "0.6.1"
+version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d7b19f5c2df95a07275e7224924cc62f76f04525f4fda801473f85e325e81977"
+checksum = "882f368737489ea543bc5c340e6f3d34a28c39980bd9a979e47322b26f60ac40"
dependencies = [
+ "libc",
"log",
"num_cpus",
"rayon",
@@ -989,7 +990,7 @@ dependencies = [
"fs2",
"lazy_static",
"regex",
- "remove_dir_all 0.6.1",
+ "remove_dir_all 0.7.0",
"shell-words",
"state",
"subplotlib-derive",
diff --git a/Cargo.toml b/Cargo.toml
index b4d473d..fe57587 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,7 +11,7 @@ description = '''
tools for specifying, documenting,
and implementing automated acceptance tests for systems and software'''
homepage = "https://subplot.liw.fi/"
-repository = "https://gitlab.com/larswirzenius/subplot"
+repository = "https://gitlab.com/subplot/subplot"
[workspace]
members = [ "subplotlib", "subplotlib-derive" ]
diff --git a/subplotlib-derive/Cargo.toml b/subplotlib-derive/Cargo.toml
index 787de3c..16a1a30 100644
--- a/subplotlib-derive/Cargo.toml
+++ b/subplotlib-derive/Cargo.toml
@@ -1,8 +1,17 @@
[package]
name = "subplotlib-derive"
version = "0.1.0"
-authors = ["Daniel Silverstone <dsilvers@digital-scurf.org>"]
+authors = [
+ "Lars Wirzenius <liw@liw.fi>",
+ "Daniel Silverstone <dsilvers@digital-scurf.org>",
+]
edition = "2018"
+license = "GPL-3.0-or-later"
+description = '''
+macros for constructing subplotlib based test suites, typically
+generated by `subplot codegen`.'''
+homepage = "https://subplot.liw.fi/"
+repository = "https://gitlab.com/subplot/subplot"
[lib]
proc-macro = true
diff --git a/subplotlib/Cargo.toml b/subplotlib/Cargo.toml
index a9e8f85..07e00c1 100644
--- a/subplotlib/Cargo.toml
+++ b/subplotlib/Cargo.toml
@@ -1,8 +1,17 @@
[package]
name = "subplotlib"
version = "0.1.0"
-authors = ["Daniel Silverstone <dsilvers@digital-scurf.org>"]
+authors = [
+ "Lars Wirzenius <liw@liw.fi>",
+ "Daniel Silverstone <dsilvers@digital-scurf.org>",
+]
edition = "2018"
+license = "GPL-3.0-or-later"
+description = '''
+Utility functions and types for `subplot codegen` generated Rust based
+test suites. Relies on `subplotlib-derive` for associated macros.'''
+homepage = "https://subplot.liw.fi/"
+repository = "https://gitlab.com/subplot/subplot"
[dependencies]
@@ -18,4 +27,4 @@ filetime = "0.2"
regex = "1.4"
shell-words = "1.0"
unescape = "0.1"
-remove_dir_all = "0.6"
+remove_dir_all = "0.7"