Skip to content

Commit bdddfe2

Browse files
authored
Merge pull request #35 from tcharding/01-30-docs
Improve the readme
2 parents 3532a99 + 6fa88ba commit bdddfe2

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,13 @@ let adt = Adt { x: 42, p: Foo::Space(50).into() };
6868
println!("We can explicitly deref: {}", *adt.p);
6969
println!("Or use deref coercion: {}", adt.p);
7070
println!("Or we can use borrow: {}", &adt.p);
71-
72-
// And if all that is too complicated just use the inherent methods:
73-
74-
println!("Explicitly get a reference: {}", adt.p.as_inner());
75-
println!("Or the inner type: {}", adt.p.into_inner());
7671
```
7772

7873
## Minimum Supported Rust Version (MSRV)
7974

80-
The crate MSRV is Rust v1.56.1
75+
This library should compile with any combination of features on **Rust 1.63.0**.
76+
77+
Use `Cargo-minimal.lock` to build the MSRV by copying to `Cargo.lock` and building.
8178

8279
## Licensing
8380

0 commit comments

Comments
 (0)