add deprecation warning

This commit is contained in:
Vinzenz Schroeter 2024-05-26 16:43:57 +02:00
parent 0bc13fee81
commit ef945e37f7
4 changed files with 19 additions and 2 deletions

2
Cargo.lock generated
View file

@ -420,7 +420,7 @@ dependencies = [
[[package]]
name = "servicepoint2"
version = "0.4.2"
version = "0.4.3"
dependencies = [
"bzip2",
"flate2",

View file

@ -1,3 +1,17 @@
# Archived!
This fork will no longer be the repository where releases are published.
Please switch to the [upstreamed version](https://github.com/cccb/servicepoint) with the following changes in your Cargo.toml:
```diff
[dependencies]
- servicepoint2 = "0.4.2"
+ servicepoint = "0.5.0"
```
The new crate is also published on [crates.io](https://crates.io/crates/servicepoint).
# servicepoint2
[![crates.io](https://img.shields.io/crates/v/servicepoint2.svg)](https://crates.io/crates/servicepoint2)

View file

@ -1,6 +1,6 @@
[package]
name = "servicepoint2"
version = "0.4.2"
version = "0.4.3"
publish = true
edition = "2021"
license = "GPL-3.0-or-later"

3
servicepoint2/build.rs Normal file
View file

@ -0,0 +1,3 @@
pub fn main() {
println!("cargo:warning=This crate is unmaintained. Please switch to `servicepoint`.")
}