Skip to content

Commit e26644b

Browse files
authored
Merge pull request #13 from nav-solutions/migrate_url
Update URL (migration)
2 parents cb569ec + acf8c47 commit e26644b

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "data"]
22
path = data
3-
url = https://github.com/rtk-rs/data
3+
url = https://github.com/nav-solutions/data

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "binex"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
license = "MPL-2.0"
55
authors = ["Guillaume W. Bres <guillaume.bressaix@gmail.com>"]
6-
description = "BINEX (Binary EXchange) encoder and decoder for real-time GNSS"
7-
homepage = "https://github.com/rtk-rs"
8-
repository = "https://github.com/rtk-rs/binex"
6+
description = "BINEX encoder and decoder for real-time GNSS"
7+
homepage = "https://github.com/nav-solutions"
8+
repository = "https://github.com/nav-solutions/binex"
99
keywords = ["geo", "gps", "galileo"]
1010
categories = ["science", "science::geo", "parsing"]
1111
edition = "2021"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# BINEX
22

3-
[![Rust](https://github.com/rtk-rs/binex/actions/workflows/rust.yml/badge.svg)](https://github.com/rtk-rs/binex/actions/workflows/rust.yml)
4-
[![Rust](https://github.com/rtk-rs/binex/actions/workflows/daily.yml/badge.svg)](https://github.com/rtk-rs/binex/actions/workflows/daily.yml) [![crates.io](https://img.shields.io/crates/v/binex.svg)](https://crates.io/crates/binex)
3+
[![Rust](https://github.com/nav-solutions/binex/actions/workflows/rust.yml/badge.svg)](https://github.com/nav-solutions/binex/actions/workflows/rust.yml)
4+
[![Rust](https://github.com/nav-solutions/binex/actions/workflows/daily.yml/badge.svg)](https://github.com/nav-solutions/binex/actions/workflows/daily.yml) [![crates.io](https://img.shields.io/crates/v/binex.svg)](https://crates.io/crates/binex)
55
[![crates.io](https://docs.rs/binex/badge.svg)](https://docs.rs/binex/badge.svg)
66

77
[![MRSV](https://img.shields.io/badge/MSRV-1.82.0-orange?style=for-the-badge)](https://github.com/rust-lang/rust/releases/tag/1.82.0)
8-
[![License](https://img.shields.io/badge/license-MPL_2.0-orange?style=for-the-badge&logo=mozilla)](https://github.com/rtk-rs/binex/blob/main/LICENSE)
8+
[![License](https://img.shields.io/badge/license-MPL_2.0-orange?style=for-the-badge&logo=mozilla)](https://github.com/nav-solutions/binex/blob/main/LICENSE)
99

1010
BINEX is a simple library to decode and encode BINEX messages.
1111
BINEX stands for BINary EXchange and is the "real time" stream oriented
@@ -108,5 +108,5 @@ streamed into a `Writable` interface:
108108
License
109109
=======
110110

111-
This library is part of the [RTK-rs framework](https://github.com/rtk-rs) which
111+
This library is part of the [NAV-Solutions framework](https://github.com/nav-solutions) which
112112
is delivered under the [Mozilla V2 Public](https://www.mozilla.org/en-US/MPL/2.0) license.

src/lib.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
#![doc(html_logo_url = "https://raw.githubusercontent.com/rtk-rs/.github/master/logos/logo2.jpg")]
1+
#![doc(
2+
html_logo_url = "https://raw.githubusercontent.com/nav-solutions/.github/master/logos/logo2.jpg"
3+
)]
24
#![doc = include_str!("../README.md")]
35
#![cfg_attr(docsrs, feature(doc_cfg))]
46

57
/*
6-
* BINEX is part of the rtk-rs framework.
8+
* BINEX is part of the nav-solutions framework.
79
* Authors: Guillaume W. Bres <guillaume.bressaix@gmail.com> et al.
8-
* (cf. https://github.com/rtk-rs/binex/graphs/contributors)
10+
* (cf. https://github.com/nav-solutions/binex/graphs/contributors)
911
* This framework is shipped under Mozilla Public V2 license.
1012
*/
1113

0 commit comments

Comments
 (0)