Skip to content

Commit aaadd6b

Browse files
committed
GH-25 # Bump to 0.3.8
1 parent 94f1e66 commit aaadd6b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust_jarm"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
authors = ["Hugo-C"]
55
edition = "2024"
66
license = "MIT"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rust_jarm is a library to compute JARM fingerprint. It is more or less a direct
1010
put in Cargo.toml:
1111
```
1212
[dependencies]
13-
rust_jarm = "0.3.7"
13+
rust_jarm = "0.3.8"
1414
```
1515

1616
## Usage
@@ -19,7 +19,7 @@ rust_jarm = "0.3.7"
1919
let host = "some.website.com".to_string();
2020
let port = "443".to_string();
2121
let jarm_hash = Jarm::new(host, port).hash().expect("failed to connect");
22-
println!("JARM hash: {}", jarm_hash);
22+
println!("JARM hash: {jarm_hash}");
2323
````
2424

2525
check [jarm.rs](examples/jarm.rs) for the full example, run it with `cargo run --example jarm`

0 commit comments

Comments
 (0)