Skip to content

Commit

Permalink
Updated name of repo and added shields
Browse files Browse the repository at this point in the history
  • Loading branch information
Davichet-e committed Oct 19, 2024
1 parent a6b62d7 commit b75210b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "meos"
version = "0.2.0"
version = "0.2.1"
license-file = "LICENSE"
authors = ["David García Morillo <[email protected]>"]
repository = "https://github.com/MobilityDB/RustMEOS"
repository = "https://github.com/MobilityDB/meos-rs"
documentation = "https://docs.rs/crate/meos/"
keywords = ["meos", "libmeos", "mobility", "geotemporal", "gis"]
categories = ["external-ffi-bindings", "algorithms"]
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# RustMEOS
# meos-rs
[<img alt="github" src="https://img.shields.io/badge/github-meos--rs-8da0cb?&logo=github" height="20">](https://github.com/MobilityDB/meos-rs)
[<img alt="crates.io" src="https://img.shields.io/crates/v/meos.svg?&logo=rust" height="20">](https://crates.io/crates/meos)
[<img alt="docs.rs" src="https://img.shields.io/badge/docs.rs-meos-66c2a5?&logo=docs.rs" height="20">](https://docs.rs/meos)

RustMEOS is a Rust library providing bindings for the [MEOS](https://libmeos.org/) C library, designed for spatiotemporal data management and analysis. It enables handling of temporal and spatial data, making it ideal for applications that need to work with moving objects, trajectories, and time-varying geographical data.
**meos-rs** is a Rust library providing bindings for the [MEOS](https://libmeos.org/) C library, designed for spatiotemporal data management and analysis. It enables handling of temporal and spatial data, making it ideal for applications that need to work with moving objects, trajectories, and time-varying geographical data.

It supports MEOS version >= 1.2

Expand Down
4 changes: 2 additions & 2 deletions sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "meos-sys"
version = "0.1.5"
version = "0.1.6"
authors = ["David García Morillo <[email protected]>"]

repository = "https://github.com/MobilityDB/RustMEOS"
repository = "https://github.com/MobilityDB/meos-rs"
documentation = "https://docs.rs/crate/meos-sys/"
keywords = ["meos", "libmeos", "mobility", "geotemporal", "gis"]
categories = ["external-ffi-bindings", "algorithms"]
Expand Down
5 changes: 1 addition & 4 deletions sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,10 @@
Low level [MEOS](https://libmeos.org/) C API bindings for MEOS.

It provides C-interface as is. If you want to use a more Rust-friendly crate,
use the [meos](https://github.com/MobilityDB/RustMEOS) crate.
use the [meos](https://github.com/MobilityDB/meos-rs) crate.

You can also find it on [crates.io](https://crates.io/crates/meos).

## Version policy
Currently the bindings are generated manually using bindgen. The commit of the repository currently tracked is [this one](https://github.com/MobilityDB/MobilityDB/tree/226bfec72644031f66d77eb09093d71c76efd97f)

## Build

The build by default will use system-installed MEOS, `pkg-config` is used to automatically detect MEOS
Expand Down
2 changes: 1 addition & 1 deletion sys/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Low level [MEOS](https://libmeos.org/) C API bindings for MEOS >= 1.1.
//!
//! It provides C-interface as is. If you want to use a more Rust-friendly crate,
//! use the [meos](https://github.com/MobilityDB/RustMEOS) crate.
//! use the [meos](https://github.com/MobilityDB/meos-rs) crate.
//! You can also find it on [crates.io](https://crates.io/crates/meos).
//!
Expand Down

0 comments on commit b75210b

Please sign in to comment.