mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +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]]
|
[[package]]
|
||||||
name = "servicepoint2"
|
name = "servicepoint2"
|
||||||
version = "0.4.2"
|
version = "0.4.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bzip2",
|
"bzip2",
|
||||||
"flate2",
|
"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
|
# servicepoint2
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/servicepoint2.svg)](https://crates.io/crates/servicepoint2)
|
[![crates.io](https://img.shields.io/crates/v/servicepoint2.svg)](https://crates.io/crates/servicepoint2)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "servicepoint2"
|
name = "servicepoint2"
|
||||||
version = "0.4.2"
|
version = "0.4.3"
|
||||||
publish = true
|
publish = true
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-or-later"
|
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