File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ authors = ["Scott Olson <scott@solson.me>"]
5
5
description = " An experimental interpreter for Rust MIR."
6
6
license = " MIT/Apache-2.0"
7
7
name = " miri"
8
- repository = " https://github.com/solson /miri"
8
+ repository = " https://github.com/rust-lang /miri"
9
9
version = " 0.1.0"
10
10
build = " build.rs"
11
11
default-run = " miri"
Original file line number Diff line number Diff line change 1
- # Miri [ ![ Build Status] ( https://travis-ci.org/solson /miri.svg?branch=master )] ( https://travis-ci.org/solson /miri ) [ ![ Windows build status] ( https://ci.appveyor.com/api/projects/status/github/solson /miri?svg=true )] ( https://ci.appveyor.com/project/solson63299 /miri )
1
+ # Miri [ ![ Build Status] ( https://travis-ci.com/rust-lang /miri.svg?branch=master )] ( https://travis-ci.com/rust-lang /miri ) [ ![ Windows build status] ( https://ci.appveyor.com/api/projects/status/github/rust-lang /miri?svg=true )] ( https://ci.appveyor.com/project/rust-lang-libs /miri )
2
2
3
3
4
4
An experimental interpreter for [ Rust] [ rust ] 's
@@ -28,11 +28,11 @@ Miri has already discovered some [real-world bugs](#bugs-found-by-miri).
28
28
Install Miri as a cargo subcommand:
29
29
30
30
``` sh
31
- cargo +nightly install --force --git https://github.com/solson /miri miri
31
+ cargo +nightly install --force --git https://github.com/rust-lang /miri miri
32
32
```
33
33
34
34
If this does not work, try using the nightly version given in
35
- [ this file] ( https://raw.githubusercontent.com/solson /miri/master/rust-version ) . CI
35
+ [ this file] ( https://raw.githubusercontent.com/rust-lang /miri/master/rust-version ) . CI
36
36
should ensure that this nightly always works.
37
37
38
38
You have to use a consistent Rust version for building miri and your project, so
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ fn foo<T>(mut x: T) where for<'a> &'a mut T: Id
22
22
let _y = x. id ( ) ;
23
23
// Inspecting the trace should show that _y has a type involving a local lifetime, when it gets validated.
24
24
// Unfortunately, there doesn't seem to be a way to actually have a test fail if it does not have the right
25
- // type. Currently, this is NOT working correctly; see <https://github.com/solson /miri/issues/298>.
25
+ // type. Currently, this is NOT working correctly; see <https://github.com/rust-lang /miri/issues/298>.
26
26
}
27
27
28
28
fn main ( ) {
You can’t perform that action at this time.
0 commit comments