From 804412c1a1c9ec215ce7d25469019b6192a81891 Mon Sep 17 00:00:00 2001 From: Edd Barrett Date: Mon, 21 Dec 2020 14:29:21 +0000 Subject: [PATCH 1/2] Move to our new contributors scheme. All Cargo manifests now list "The Yorick Developers" and we provide a link to the Github contributors page in the README. --- README.md | 5 +++++ ykbh/Cargo.toml | 2 +- ykcompile/Cargo.toml | 2 +- ykpack/Cargo.toml | 2 +- ykrt/Cargo.toml | 2 +- yktrace/Cargo.toml | 2 +- ykview/Cargo.toml | 2 +- 7 files changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 36e4f14fc..a8f89c9e6 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,8 @@ 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. + +## Contributors + +Yorick is developed by a team of people listed in the +[contributors page](https://github.com/softdevteam/yk/graphs/contributors). diff --git a/ykbh/Cargo.toml b/ykbh/Cargo.toml index bea522b2e..b08f4cb39 100644 --- a/ykbh/Cargo.toml +++ b/ykbh/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ykbh" version = "0.1.0" -authors = ["Lukas Diekmann "] +authors = ["The Yorick Developers"] edition = "2018" [dependencies] diff --git a/ykcompile/Cargo.toml b/ykcompile/Cargo.toml index 0586e9eda..0cdf41320 100644 --- a/ykcompile/Cargo.toml +++ b/ykcompile/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ykcompile" version = "0.1.0" -authors = ["Lukas Diekmann "] +authors = ["The Yorick Developers"] edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/ykpack/Cargo.toml b/ykpack/Cargo.toml index d9313db29..1ff105e67 100644 --- a/ykpack/Cargo.toml +++ b/ykpack/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ykpack" version = "0.1.0" -authors = ["Edd Barrett "] +authors = ["The Yorick Developers"] edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/ykrt/Cargo.toml b/ykrt/Cargo.toml index f1e68cb11..bbe694b99 100644 --- a/ykrt/Cargo.toml +++ b/ykrt/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ykrt" version = "0.1.0" -authors = ["Edd Barrett ", "Laurence Tratt "] +authors = ["The Yorick Developers"] edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/yktrace/Cargo.toml b/yktrace/Cargo.toml index 6e1ca1acd..f45a33408 100644 --- a/yktrace/Cargo.toml +++ b/yktrace/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "yktrace" version = "0.1.0" -authors = ["Edd Barrett "] +authors = ["The Yorick Developers"] edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/ykview/Cargo.toml b/ykview/Cargo.toml index cee670a82..fd95bfdfd 100644 --- a/ykview/Cargo.toml +++ b/ykview/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ykview" version = "0.1.0" -authors = ["bjorn3 "] +authors = ["The Yorick Developers"] edition = "2018" license = "Apache-2.0 OR MIT" From 466fa5081bd932921cead0eddd1b1a118abda367 Mon Sep 17 00:00:00 2001 From: Edd Barrett Date: Mon, 21 Dec 2020 14:32:08 +0000 Subject: [PATCH 2/2] Update general overview in the README.md. --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a8f89c9e6..308080673 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,12 @@ # 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