Skip to content

Commit

Permalink
Fix np server URLs to use HTTPS. Bump to 0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Nov 27, 2023
1 parent 8a5babb commit bd2b5bb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nanopub-cli"
version = "0.0.12"
version = "0.0.13"
description = """
A cross-platform CLI tool written in Rust to sign Nanopublications.
"""
Expand All @@ -14,7 +14,7 @@ homepage.workspace = true
categories.workspace = true

[dependencies]
nanopub = { version = "0.0.12", path = "../lib" }
nanopub = { version = "0.0.13", path = "../lib" }
clap = { version = "4.4", features = ["derive"] }
clap_complete = "4.4"
tokio = { version = "1.34", features = ["macros", "rt-multi-thread"] }
4 changes: 2 additions & 2 deletions js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nanopub-js"
version = "0.0.12"
version = "0.0.13"
description = "JavaScript bindings for the Nanopub rust toolkit"
repository = "https://github.com/vemonet/nanopub-rs/tree/main/js"
authors.workspace = true
Expand All @@ -15,7 +15,7 @@ categories.workspace = true
crate-type = ["cdylib"]

[dependencies]
nanopub = { version = "0.0.12", path = "../lib" }
nanopub = { version = "0.0.13", path = "../lib" }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
serde-wasm-bindgen = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nanopub"
version = "0.0.12"
version = "0.0.13"
description = """
A cross-platform Rust library to sign Nanopublications, with bindings to Python and JS (wasm)
"""
Expand Down
12 changes: 6 additions & 6 deletions lib/src/constants.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/// List of available Nanopub servers
/// Checkout the live list at https://monitor.petapico.org
pub const LIST_SERVERS: [&str; 6] = [
"http://server.nanopubs.lod.labs.vu.nl/",
"http://server.np.dumontierlab.com/",
"http://app.tkuhn.eculture.labs.vu.nl/nanopub-server-1",
"http://app.tkuhn.eculture.labs.vu.nl/nanopub-server-2",
"http://app.tkuhn.eculture.labs.vu.nl/nanopub-server-3",
"http://app.tkuhn.eculture.labs.vu.nl/nanopub-server-4",
"https://server.nanopubs.lod.labs.vu.nl/",
"https://server.np.dumontierlab.com/",
"https://app.tkuhn.eculture.labs.vu.nl/nanopub-server-1",
"https://app.tkuhn.eculture.labs.vu.nl/nanopub-server-2",
"https://app.tkuhn.eculture.labs.vu.nl/nanopub-server-3",
"https://app.tkuhn.eculture.labs.vu.nl/nanopub-server-4",
];

/// Nanopub test server URL
Expand Down
4 changes: 2 additions & 2 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nanopub-sign"
version = "0.0.12"
version = "0.0.13"
description = "Python bindings for the Nanopub rust toolkit"
repository = "https://github.com/vemonet/nanopub-rs/tree/main/python"
authors.workspace = true
Expand All @@ -16,7 +16,7 @@ name = "nanopub_sign"
crate-type = ["cdylib"]

[dependencies]
nanopub = { version = "0.0.12", path = "../lib" }
nanopub = { version = "0.0.13", path = "../lib" }
pyo3 = { version = "0.20", features = ["extension-module"] }
pyo3-asyncio = "0.20"
tokio = { version = "1.34", features = ["rt-multi-thread"] }

0 comments on commit bd2b5bb

Please sign in to comment.