Skip to content

Commit 06625cf

Browse files
authored
Update URL (migration) (#50)
* Update URL (migration) * Bump framework --------- Signed-off-by: Guillaume W. Bres <[email protected]>
1 parent 6360dde commit 06625cf

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "cggtts"
3-
version = "4.3.0"
3+
version = "4.3.1"
44
license = "MPL-2.0"
55
authors = ["Guillaume W. Bres <[email protected]>"]
66
description = "CGGTTS data parsing and synthesis"
7-
homepage = "https://github.com/rtk-rs"
8-
repository = "https://github.com/rtk-rs/cggtts"
7+
homepage = "https://github.com/nav-solutions"
8+
repository = "https://github.com/nav-solutions/cggtts"
99
keywords = ["geo", "gnss", "timing", "gps"]
1010
categories = ["science", "science", "parsing"]
1111
edition = "2018"
@@ -39,8 +39,8 @@ strum_macros = "0.27"
3939
flate2 = { version = "1", optional = true }
4040
log = { version = "0.4", optional = true }
4141
polyfit-rs = { version = "0.2", optional = true }
42-
gnss-rs = { version = "2.4.0", features = ["serde"] }
43-
hifitime = { version = "4.1.0", features = ["serde", "std"] }
42+
gnss-rs = { version = "2.4", features = ["serde"] }
43+
hifitime = { version = "4.1", features = ["serde", "std"] }
4444
serde = { version = "1.0", optional = true, features = ["derive"] }
4545

4646
[dev-dependencies]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ CGGTTS
33

44
Rust package to parse and generate CGGTTS data.
55

6-
[![Rust](https://github.com/rtk-rs/cggtts/actions/workflows/rust.yml/badge.svg)](https://github.com/rtk-rs/cggtts/actions/workflows/rust.yml)
7-
[![Rust](https://github.com/rtk-rs/cggtts/actions/workflows/daily.yml/badge.svg)](https://github.com/rtk-rs/cggtts/actions/workflows/daily.yml)
6+
[![Rust](https://github.com/nav-solutions/cggtts/actions/workflows/rust.yml/badge.svg)](https://github.com/nav-solutions/cggtts/actions/workflows/rust.yml)
7+
[![Rust](https://github.com/nav-solutions/cggtts/actions/workflows/daily.yml/badge.svg)](https://github.com/nav-solutions/cggtts/actions/workflows/daily.yml)
88
[![crates.io](https://docs.rs/cggtts/badge.svg)](https://docs.rs/cggtts/)
99
[![crates.io](https://img.shields.io/crates/d/cggtts.svg)](https://crates.io/crates/cggtts)
1010

1111
[![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)
12-
[![License](https://img.shields.io/badge/license-MPL_2.0-orange?style=for-the-badge&logo=mozilla)](https://github.com/rtk-rs/sp3/blob/main/LICENSE)
12+
[![License](https://img.shields.io/badge/license-MPL_2.0-orange?style=for-the-badge&logo=mozilla)](https://github.com/nav-solutions/sp3/blob/main/LICENSE)
1313

1414
## License
1515

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

1919
## CGGTTS

src/lib.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
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-
* CGGTTS is part of the rtk-rs framework.
8+
* CGGTTS is part of the nav-solutions framework.
79
* Authors: Guillaume W. Bres <[email protected]> et al.
8-
* (cf. https://github.com/rtk-rs/cggtts/graphs/contributors)
10+
* (cf. https://github.com/nav-solutions/cggtts/graphs/contributors)
911
* This framework is shipped under Mozilla Public V2 license.
1012
*
11-
* Documentation: https://github.com/rtk-rs/cggtts
13+
* Documentation: https://github.com/nav-solutions/cggtts
1214
*/
1315

1416
extern crate gnss_rs as gnss;

0 commit comments

Comments
 (0)