File tree Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Add this to your `Cargo.toml`:
12
12
13
13
``` toml
14
14
[dependencies ]
15
- oauth = { version = " 0.3 " , package = " oauth1-request" }
15
+ oauth = { version = " 0.4 " , package = " oauth1-request" }
16
16
```
17
17
18
18
A typical authorization flow looks like this:
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ http-body = "0.3"
28
28
hyper = { version = " 0.13" , features = [" stream" ] }
29
29
log = " 0.4"
30
30
nom = " =6.0.0-alpha3"
31
- oauth = { version = " 0.3 " , package = " oauth1-request" }
31
+ oauth = { version = " 0.4 " , package = " oauth1-request" }
32
32
oauth-credentials = { version = " 0.1" , features = [" serde" ] }
33
33
percent-encoding = " 2"
34
34
pin-project = " 1"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " oauth1-request-derive"
3
3
edition = " 2018"
4
- version = " 0.3.3 "
4
+ version = " 0.4.0 "
5
5
authors = [
" Daiki Mizukami <[email protected] >" ]
6
6
license = " MIT OR Apache-2.0"
7
7
homepage = " https://github.com/tesaguri/oauth1-request-rs"
8
8
repository = " https://github.com/tesaguri/oauth1-request-rs"
9
- documentation = " https://docs.rs/oauth1-request-derive/0.3.3 /oauth1_request_derive/"
9
+ documentation = " https://docs.rs/oauth1-request-derive/0.4.0 /oauth1_request_derive/"
10
10
description = """
11
11
A derive macro for `oauth1_request::Request` trait.
12
12
"""
@@ -23,5 +23,5 @@ syn = { version = "1", features = ["full"] }
23
23
24
24
[dev-dependencies ]
25
25
compiletest = { version = " 0.5" , package = " compiletest_rs" }
26
- oauth = { version = " 0.3.0 " , package = " oauth1-request" }
26
+ oauth = { version = " 0.4 " , package = " oauth1-request" }
27
27
version-sync = " 0.9"
Original file line number Diff line number Diff line change 2
2
3
3
//! This crate provides a derive macro for [`oauth1_request::Request`][Request]:
4
4
//!
5
- //! [Request]: https://docs.rs/oauth1-request/0.3 /oauth1_request/trait.Request.html
5
+ //! [Request]: https://docs.rs/oauth1-request/0.4 /oauth1_request/trait.Request.html
6
6
//!
7
7
//! ```
8
8
//! #[derive(oauth::Request)]
13
13
//! is enabled (which is on by default).
14
14
//! You should use the re-export instead of depending on this crate directly.
15
15
16
- #![ doc( html_root_url = "https://docs.rs/oauth1-request-derive/0.3.3 " ) ]
16
+ #![ doc( html_root_url = "https://docs.rs/oauth1-request-derive/0.4.0 " ) ]
17
17
18
18
#[ allow( unused_extern_crates) ]
19
19
extern crate proc_macro;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ publish = false
7
7
[workspace ]
8
8
9
9
[dependencies ]
10
- oauth1-request = { version = " 0.3 " , default-features = false , features = [" derive" ] }
10
+ oauth1-request = { version = " 0.4 " , default-features = false , features = [" derive" ] }
11
11
12
12
[patch .crates-io ]
13
13
oauth-credentials = { path = " ../../oauth-credentials" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " oauth1-request"
3
- version = " 0.3.2 "
3
+ version = " 0.4.0 "
4
4
edition = " 2018"
5
5
authors = [
" Daiki Mizukami <[email protected] >" ]
6
6
license = " MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ keywords = ["oauth", "oauth1"]
9
9
categories = [" authentication" ]
10
10
homepage = " https://github.com/tesaguri/oauth1-request-rs"
11
11
repository = " https://github.com/tesaguri/oauth1-request-rs"
12
- documentation = " https://docs.rs/oauth1-request/0.3.2 /oauth1_request/"
12
+ documentation = " https://docs.rs/oauth1-request/0.4.0 /oauth1_request/"
13
13
description = """
14
14
Yet yet yet another OAuth 1 client library.
15
15
"""
@@ -23,7 +23,7 @@ percent-encoding = "2"
23
23
rand = " 0.7"
24
24
25
25
# `derive` feature
26
- oauth1-request-derive = { version = " 0.3 " , optional = true }
26
+ oauth1-request-derive = { version = " 0.4 " , optional = true }
27
27
28
28
# `hmac-sha1` feature
29
29
either = { version = " 1" , optional = true }
@@ -32,7 +32,7 @@ sha-1 = { version = "0.9", optional = true }
32
32
33
33
[dev-dependencies ]
34
34
# Trick to make `proc-macro-crate` work in doctests.
35
- oauth1-request = { version = " 0.3 " , path = " " }
35
+ oauth1-request = { version = " 0.4 " , path = " " }
36
36
version-sync = " 0.9"
37
37
38
38
[features ]
Original file line number Diff line number Diff line change 6
6
//!
7
7
//! ```toml
8
8
//! [dependencies]
9
- //! oauth = { version = "0.3 ", package = "oauth1-request" }
9
+ //! oauth = { version = "0.4 ", package = "oauth1-request" }
10
10
//! ```
11
11
//!
12
12
//! For brevity, we refer to the crate name as `oauth` throughout the documentation,
88
88
//!
89
89
//! See [`Request`][oauth1_request_derive::Request] for more details on the derive macro.
90
90
91
- #![ doc( html_root_url = "https://docs.rs/oauth1-request/0.3.2 " ) ]
91
+ #![ doc( html_root_url = "https://docs.rs/oauth1-request/0.4.0 " ) ]
92
92
#![ deny( broken_intra_doc_links) ]
93
93
#![ warn( missing_docs, rust_2018_idioms) ]
94
94
You can’t perform that action at this time.
0 commit comments