Skip to content

Commit e9be422

Browse files
authored
Merge pull request #642 from taiki-e/update-links
Update some links
2 parents 76138c5 + 441442e commit e9be422

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Scott Olson <scott@solson.me>"]
55
description = "An experimental interpreter for Rust MIR."
66
license = "MIT/Apache-2.0"
77
name = "miri"
8-
repository = "https://github.com/solson/miri"
8+
repository = "https://github.com/rust-lang/miri"
99
version = "0.1.0"
1010
build = "build.rs"
1111
default-run = "miri"

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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)
22

33

44
An experimental interpreter for [Rust][rust]'s
@@ -28,11 +28,11 @@ Miri has already discovered some [real-world bugs](#bugs-found-by-miri).
2828
Install Miri as a cargo subcommand:
2929

3030
```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
3232
```
3333

3434
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
3636
should ensure that this nightly always works.
3737

3838
You have to use a consistent Rust version for building miri and your project, so

tests/run-pass/validation_lifetime_resolution.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fn foo<T>(mut x: T) where for<'a> &'a mut T: Id
2222
let _y = x.id();
2323
// Inspecting the trace should show that _y has a type involving a local lifetime, when it gets validated.
2424
// 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>.
2626
}
2727

2828
fn main() {

0 commit comments

Comments
 (0)