Skip to content

Commit 6360dde

Browse files
authored
Lib update (#49)
* Update libraries --------- Signed-off-by: Guillaume W. Bres <[email protected]>
1 parent dc0602b commit 6360dde

File tree

5 files changed

+27
-13
lines changed

5 files changed

+27
-13
lines changed

.github/workflows/daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions-rs/toolchain@v1
2525
name: Install Rust
2626
with:
27-
toolchain: stable
27+
toolchain: 1.82.0
2828
override: true
2929

3030
- uses: actions-rs/cargo@v1

.github/workflows/release.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: write
1010

1111
jobs:
12-
publish_crates:
12+
publish:
1313
name: Release
1414
runs-on: ubuntu-latest
1515
continue-on-error: true
@@ -27,3 +27,17 @@ jobs:
2727
run: |
2828
cargo login $TOKEN
2929
cargo publish --allow-dirty
30+
31+
release:
32+
runs-on: ubuntu-latest
33+
needs: ['publish']
34+
steps:
35+
- name: Create Release
36+
id: create_release
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
uses: actions/create-release@v1
40+
with:
41+
draft: true
42+
tag_name: ${{ github.ref_name }}
43+
release_name: ${{ github.ref_name }}

.github/workflows/rust.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ jobs:
2121
submodules: recursive
2222
fetch-depth: 0
2323

24-
- uses: actions-rs/toolchain@v1
25-
name: Install Rust
26-
with:
27-
toolchain: stable
28-
override: true
29-
components: rustfmt, clippy
30-
3124
- uses: actions-rs/cargo@v1
3225
name: Linter
3326
with:
3427
command: fmt
3528
args: --all -- --check
3629

30+
- uses: actions-rs/toolchain@v1
31+
name: Install Rust
32+
with:
33+
toolchain: 1.82.0
34+
override: true
35+
components: rustfmt, clippy
36+
3737
- uses: actions-rs/cargo@v1
3838
name: Build
3939
with:

Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cggtts"
3-
version = "4.2.1"
3+
version = "4.3.0"
44
license = "MPL-2.0"
55
authors = ["Guillaume W. Bres <[email protected]>"]
66
description = "CGGTTS data parsing and synthesis"
@@ -39,10 +39,9 @@ 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"] }
4244
serde = { version = "1.0", optional = true, features = ["derive"] }
4345

44-
gnss-rs = { git = "https://github.com/rtk-rs/gnss", branch = "main", features = ["serde"] }
45-
hifitime = { git = "https://github.com/nyx-space/hifitime", branch = "master", features = ["serde", "std"] }
46-
4746
[dev-dependencies]
4847
rand = "0.8"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Rust package to parse and generate CGGTTS data.
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

11+
[![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)
1112
[![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)
1213

1314
## License

0 commit comments

Comments
 (0)