Skip to content

Commit fd5d59d

Browse files
Release v1.3.17
Signed-off-by: Florentin Dubois <[email protected]>
1 parent c529968 commit fd5d59d

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,7 +1,7 @@
11
[package]
22
name = "oauth10a"
33
description = "A rust implementation of the oauth 1.0a protocol fully-async with logging, metrics and tracing facilities"
4-
version = "1.3.16"
4+
version = "1.3.17"
55
edition = "2021"
66
rust-version = "1.60.0"
77
authors = ["Florentin Dubois <[email protected]>"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fix the trouble.
1414
To install this dependency, just add the following line to your `Cargo.toml` manifest.
1515

1616
```toml
17-
oauth10a = { version = "^1.3.14", features = ["metrics"] }
17+
oauth10a = { version = "^1.3.17", features = ["metrics"] }
1818
```
1919

2020
## Usage
@@ -35,7 +35,7 @@ async fn main() -> Result<(), Box<dyn Error + Send + Sync>> {
3535
secret: "".to_string(),
3636
consumer_key: "".to_string(),
3737
consumer_secret: "".to_string(),
38-
}))
38+
})
3939
.build(connector);
4040

4141
let _obj: BtreeMap<String, String> = client.get("https://example.com/object.json").await?;

0 commit comments

Comments
 (0)