File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed
Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ path = "src/signer.rs"
1717bytes = " 0.4"
1818futures-preview = { version = " 0.3.0-alpha.17" }
1919hyper = " 0.13.0-alpha.1"
20- oauth = { version = " 0.2 " , path = " ../oauth1-request" , package = " oauth1-request" }
20+ oauth = { version = " 0.3 " , path = " ../oauth1-request" , package = " oauth1-request" }
2121string = " 0.2"
2222tokio = " 0.2.0-alpha.1"
Original file line number Diff line number Diff line change 11[package ]
22name = " oauth1-request-derive"
33edition = " 2018"
4- version = " 0.2.2 "
4+ version = " 0.3.0 "
55authors = [" Daiki Mizukami <tesaguriguma@gmail.com>" ]
66license = " MIT OR Apache-2.0"
77homepage = " https://github.com/tesaguri/oauth1-request-rs"
88repository = " https://github.com/tesaguri/oauth1-request-rs"
9- documentation = " https://docs.rs/oauth1-request-derive/0.2.2 /oauth1_request_derive/"
9+ documentation = " https://docs.rs/oauth1-request-derive/0.3.0 /oauth1_request_derive/"
1010description = """
1111A derive macro for `oauth1_request::Authorize` trait.
1212"""
@@ -22,6 +22,6 @@ syn = "1"
2222
2323[dev-dependencies ]
2424compiletest = { version = " 0.3" , features = [" stable" ], package = " compiletest_rs" }
25- oauth = { version = " 0.2.1 " , package = " oauth1-request" }
25+ oauth = { version = " 0.3.0 " , package = " oauth1-request" }
2626rustversion = " 0.1"
2727version-sync = " 0.8"
Original file line number Diff line number Diff line change 1111//!
1212//! [Authorize]: https://docs.rs/oauth1-request/0.3/oauth1_request/authorize/trait.Authorize.html
1313
14- #![ doc( html_root_url = "https://docs.rs/oauth1-request-derive/0.2.2 " ) ]
14+ #![ doc( html_root_url = "https://docs.rs/oauth1-request-derive/0.3.0 " ) ]
1515
1616extern crate proc_macro;
1717
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ publish = false
77[workspace ]
88
99[dependencies ]
10- oauth1-request = { version = " 0.2 " , path = " ../../oauth1-request" , default-features = false }
11- oauth1-request-derive = { version = " 0.2 " , path = " ../../oauth1-request-derive" }
10+ oauth1-request = { version = " 0.3 " , path = " ../../oauth1-request" , default-features = false }
11+ oauth1-request-derive = { version = " 0.3 " , path = " ../../oauth1-request-derive" }
Original file line number Diff line number Diff line change 11[package ]
22name = " oauth1-request"
3- version = " 0.2.5 "
3+ version = " 0.3.0 "
44edition = " 2018"
55authors = [" Daiki Mizukami <tesaguriguma@gmail.com>" ]
66license = " MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ keywords = ["oauth", "oauth1"]
99categories = [" authentication" ]
1010homepage = " https://github.com/tesaguri/oauth1-request-rs"
1111repository = " https://github.com/tesaguri/oauth1-request-rs"
12- documentation = " https://docs.rs/oauth1-request/0.2.5 /oauth1_request/"
12+ documentation = " https://docs.rs/oauth1-request/0.3.0 /oauth1_request/"
1313description = """
1414Yet yet yet another OAuth 1 client library.
1515"""
@@ -22,7 +22,7 @@ percent-encoding = "1"
2222rand = " 0.7"
2323
2424# `derive` feature
25- oauth1-request-derive = { version = " 0.2 " , path = " ../oauth1-request-derive" , optional = true }
25+ oauth1-request-derive = { version = " 0.3 " , path = " ../oauth1-request-derive" , optional = true }
2626
2727# `hmac-sha1` feature
2828either = { version = " 1" , optional = true }
@@ -31,7 +31,7 @@ sha-1 = { version = "0.8", optional = true }
3131
3232[dev-dependencies ]
3333# Trick to make `proc-macro-crate` work in doctests.
34- oauth1-request = { version = " 0.2 " , path = " " }
34+ oauth1-request = { version = " 0.3 " , path = " " }
3535version-sync = " 0.8"
3636
3737[features ]
Original file line number Diff line number Diff line change 108108//!
109109//! See [`Authorize`](trait.Authorize.html) for more details on the custom derive macro.
110110
111- #![ doc( html_root_url = "https://docs.rs/oauth1-request/0.2.5 " ) ]
111+ #![ doc( html_root_url = "https://docs.rs/oauth1-request/0.3.0 " ) ]
112112
113113pub mod authorize;
114114pub mod signature_method;
You can’t perform that action at this time.
0 commit comments