mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-18 18:10:14 +01:00
add deprecation warning
This commit is contained in:
parent
0bc13fee81
commit
ef945e37f7
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -420,7 +420,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "servicepoint2"
|
||||
version = "0.4.2"
|
||||
version = "0.4.3"
|
||||
dependencies = [
|
||||
"bzip2",
|
||||
"flate2",
|
||||
|
|
14
README.md
14
README.md
|
@ -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)
|
||||
|
|
|
@ -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
3
servicepoint2/build.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
pub fn main() {
|
||||
println!("cargo:warning=This crate is unmaintained. Please switch to `servicepoint`.")
|
||||
}
|
Loading…
Reference in a new issue