Skip to content
This repository has been archived by the owner on May 21, 2023. It is now read-only.

Commit

Permalink
deprecate (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed May 21, 2023
1 parent 2d9c9be commit f2f09b4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v0.1.8
- Deprecated

### v0.1.7

- Updated dependencies and tested with Rust 1.54
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "mbtileserver"
description = "An mbtiles vector tile server"
homepage = "https://github.com/maplibre/mbtileserver-rs"
repository = "https://github.com/maplibre/mbtileserver-rs"
version = "0.1.7"
version = "0.1.8"
authors = ["Kaveh Karimi <ka7eh@pm.me>"]
edition = "2021"
license = "MIT/Apache-2.0"
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# DEPRECATED
The functionality of the `mbtileserver-rs` has been migrated to the [Martin tile server](https://github.com/maplibre/martin). No further updates are planned for this project.


> Note: This project started as a partial implementation of the API and features provided by [mbtileserver](https://github.com/consbio/mbtileserver) written in Go by [Brendan Ward](https://github.com/brendan-ward). It might diverge from that project in the future.
# mbtileserver
### mbtileserver

[![Crates.io](https://img.shields.io/crates/v/mbtileserver.svg)](https://crates.io/crates/mbtileserver)
[![Coverage Status](https://coveralls.io/repos/github/maplibre/mbtileserver-rs/badge.svg)](https://coveralls.io/github/maplibre/mbtileserver-rs)
Expand Down
6 changes: 6 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ mod tiles;
mod utils;

fn main() {
eprintln!("####################################################################");
eprintln!(" mbtileserver is no longer maintained");
eprintln!(" Please use Martin tile server instead:");
eprintln!(" https://github.com/maplibre/martin");
eprintln!("####################################################################");

pretty_env_logger::init_timed();

let args = config::Args::parse().post_parse().unwrap_or_else(|err| {
Expand Down

0 comments on commit f2f09b4

Please sign in to comment.