From e4c08355ebcbee67e796434e798c3ece0c0ec146 Mon Sep 17 00:00:00 2001 From: Vincent Emonet Date: Mon, 20 Nov 2023 10:27:13 +0100 Subject: [PATCH] fix version and delete lib/README.md --- cli/Cargo.toml | 2 +- js/Cargo.toml | 2 +- lib/README.md | 16 ---------------- python/Cargo.toml | 2 +- 4 files changed, 3 insertions(+), 19 deletions(-) delete mode 100644 lib/README.md diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 036d76a..525b901 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -11,5 +11,5 @@ homepage.workspace = true categories.workspace = true [dependencies] -nanopub = { path = "../lib" } +nanopub = { version = "0.0.0", path = "../lib" } clap = { version = "4.4.8", features = ["derive"] } diff --git a/js/Cargo.toml b/js/Cargo.toml index 7b8b6cc..9eac312 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -15,10 +15,10 @@ categories.workspace = true crate-type = ["cdylib"] [dependencies] +nanopub = { version = "0.0.0", path = "../lib" } wasm-bindgen = "0.2" js-sys = "0.3" console_error_panic_hook = "0.1" -nanopub = { path = "../lib" } [dev-dependencies] wasm-bindgen-test = "0.3" diff --git a/lib/README.md b/lib/README.md deleted file mode 100644 index f6b14e2..0000000 --- a/lib/README.md +++ /dev/null @@ -1,16 +0,0 @@ - -# Rust library for Nanopublications - -A rust toolkit to sign and publish [Nanopublications](https://nanopub.net). - -## Test - -```bash -cargo test -``` - -## Build - -```bash -cargo build -``` diff --git a/python/Cargo.toml b/python/Cargo.toml index c2ddffd..2144573 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -16,5 +16,5 @@ name = "nanopub_sign" crate-type = ["cdylib"] [dependencies] -nanopub = { path = "../lib" } +nanopub = { version = "0.0.0", path = "../lib" } pyo3 = { version = "0.20", features = ["extension-module"] }