Skip to content

Commit 0cac81b

Browse files
authored
Merge branch 'main' into dependabot/cargo/rstest-0.17.0
2 parents 5331f9d + aabdb1d commit 0cac81b

File tree

11 files changed

+494
-518
lines changed

11 files changed

+494
-518
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,9 @@ jobs:
3939
with:
4040
command: package
4141

42-
coverage:
43-
runs-on: ubuntu-latest
44-
steps:
45-
- uses: actions/checkout@v3
46-
- uses: actions-rs/[email protected]
47-
- uses: codecov/codecov-action@v3
48-
4942
publish:
5043
runs-on: ubuntu-latest
51-
needs: [build, coverage]
44+
needs: [build]
5245
if: startsWith(github.ref, 'refs/tags/')
5346

5447
steps:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# will have compiled files and executables
44
debug/
55
target/
6+
.idea/
67

78
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
89
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html

Cargo.toml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
[package]
2-
name = "advmac"
3-
version = "1.0.3"
2+
name = "advmac-rs"
3+
version = "1.0.0"
44
edition = "2021"
55
rust-version = "1.64"
66
license = "MIT"
77
description = "Advanced MAC address crate"
88
categories = ["os", "network-programming"]
9-
repository = "https://github.com/GamePad64/advmac"
9+
repository = "https://github.com/tun-rs/advmac"
1010
keywords = ["network", "mac", "macaddr", "eui-48", "eui-64"]
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
serde = { version = "1.0.145", default-features = false, optional = true }
15+
serde = { version = "1.0.214", default-features = false, optional = true }
1616
rand = { version = "0.8.5", default-features = false, features = ["getrandom"], optional = true }
17-
arrayvec = { version = "0.7.2", default-features = false }
17+
arrayvec = { version = "0.7.6", default-features = false }
18+
thiserror = "2.0.12"
1819

1920
[dev-dependencies]
20-
serde_json = "1.0.86"
21-
version-sync = "0.9"
22-
rstest = "0.17.0"
23-
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
21+
serde_json = "1.0.132"
22+
version-sync = "0.9.5"
23+
rstest = "0.23.0"
24+
serde = { version = "1.0.214", default-features = false, features = ["derive"] }
2425

2526
[features]
2627
default = ["std", "rand", "serde"]

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@
22

33
Advanced MAC address library.
44

5-
[![Crates.io](https://img.shields.io/crates/v/advmac?style=flat-square)](https://crates.io/crates/advmac)
6-
[![docs.rs](https://img.shields.io/docsrs/advmac?style=flat-square)](https://docs.rs/advmac/latest)
7-
[![Codecov](https://img.shields.io/codecov/c/gh/GamePad64/advmac?logo=codecov&style=flat-square)](https://codecov.io/gh/GamePad64/advmac)
5+
[![Crates.io](https://img.shields.io/crates/v/advmac-rs?style=flat-square)](https://crates.io/crates/advmac-rs)
6+
[![docs.rs](https://img.shields.io/docsrs/advmac-rs?style=flat-square)](https://docs.rs/advmac-rs/latest)
87

98
# Usage
109
Add this to your `Cargo.toml`:
1110

1211
```toml
1312
[dependencies]
14-
advmac = "1.0.3"
13+
advmac-rs = "1.0.0"
1514
```
1615

1716
## Features:

0 commit comments

Comments
 (0)