Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# The Yorick meta-tracer.

[ykrustc](https://github.com/softdevteam/ykrustc) is a fork of the Rust
language which aims to build a meta-tracing system from Rust. The tracing
system as a whole is called Yorick. Imagine PyPy, but where your interpreter is
written in Rust instead of RPython.
Yorick is a fork of the Rust language which aims to build a meta-tracing system
from Rust. Imagine PyPy, but where your interpreter is written in Rust instead
of RPython.

This repository houses the non-compiler components of the system.

The compiler repo can be found [here](https://github.com/softdevteam/ykrustc).

## Contributors

Yorick is developed by a team of people listed in the
[contributors page](https://github.com/softdevteam/yk/graphs/contributors).
2 changes: 1 addition & 1 deletion ykbh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ykbh"
version = "0.1.0"
authors = ["Lukas Diekmann <[email protected]>"]
authors = ["The Yorick Developers"]
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion ykcompile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ykcompile"
version = "0.1.0"
authors = ["Lukas Diekmann <[email protected]>"]
authors = ["The Yorick Developers"]
edition = "2018"
license = "Apache-2.0 OR MIT"

Expand Down
2 changes: 1 addition & 1 deletion ykpack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ykpack"
version = "0.1.0"
authors = ["Edd Barrett <[email protected]>"]
authors = ["The Yorick Developers"]
edition = "2018"
license = "Apache-2.0 OR MIT"

Expand Down
2 changes: 1 addition & 1 deletion ykrt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ykrt"
version = "0.1.0"
authors = ["Edd Barrett <[email protected]>", "Laurence Tratt <[email protected]>"]
authors = ["The Yorick Developers"]
edition = "2018"
license = "Apache-2.0 OR MIT"

Expand Down
2 changes: 1 addition & 1 deletion yktrace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "yktrace"
version = "0.1.0"
authors = ["Edd Barrett <[email protected]>"]
authors = ["The Yorick Developers"]
edition = "2018"
license = "Apache-2.0 OR MIT"

Expand Down
2 changes: 1 addition & 1 deletion ykview/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ykview"
version = "0.1.0"
authors = ["bjorn3 <[email protected]>"]
authors = ["The Yorick Developers"]
edition = "2018"
license = "Apache-2.0 OR MIT"

Expand Down