File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11
11
12
12
## Stability
13
13
14
- The goal of ` oauth-credentials ` is to provide a stable foundation for OAuth
15
- implementations.
14
+ The goal of ` oauth-credentials ` is to provide a stable and interoperable
15
+ foundation for OAuth implementations.
16
16
17
- The crate is still unstable in the sense of Semantic Versioning. However, we
17
+ However, the crate is still unstable in the sense of Semantic Versioning. But we
18
18
are not planning to make any breaking change and are going to publish the API
19
19
as it is as version 1.0.0 using the [ semver trick] unless we find a flaw in the
20
20
API significant enough to justify a breaking change.
@@ -43,7 +43,7 @@ Feature | MSRV
43
43
44
44
Note that if your crate uses the ` serde ` feature (even if optionally!), it
45
45
cannot be compiled directly with Rust 1.7.x and older due to
46
- [ rust-lang/cargo #3763 ] , but it can somehow be compiled as a non-root node of a
47
- dependency tree .
46
+ [ rust-lang/cargo #3763 ] , but it can somehow be compiled as a dependency of
47
+ another crate if the feature is disabled .
48
48
49
49
[ rust-lang/cargo#3763 ] : https://github.com/rust-lang/cargo/issues/3763
Original file line number Diff line number Diff line change @@ -54,6 +54,8 @@ pub struct Credentials<T = String> {
54
54
// XXX: These almost-identical (modulo default type param) items should certainly be defined with a
55
55
// macro, but doing so would break the build on toolchains prior to nightly-2016-05-29 (7746a334d).
56
56
// Maybe <https://github.com/rust-lang/rust/pull/33926> is relevant?
57
+ // Also, `<#[cfg(feature = "alloc")] T = String, #[cfg(not(feature = "alloc"))] T>` cannot be used
58
+ // on toolchains prior to 1.27.0.
57
59
58
60
/// An OAuth "credentials" pair defined in [RFC 5849 section 1.1][rfc].
59
61
///
You can’t perform that action at this time.
0 commit comments