summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2018-11-26 15:18:10 +0100
committerPietro Albini <pietro@pietroalbini.org>2018-11-26 15:18:10 +0100
commit060cd2832bb44090480049045162cd3cb89dc1c0 (patch)
treede3a90fc357f2a56e3e93ac1ebe0d054cbb4274d
parent7721cfd6d93e58ed277523be87a8b0b34a5811a2 (diff)
import some mailing lists
-rw-r--r--Cargo.lock95
-rw-r--r--Cargo.toml1
-rw-r--r--mailmap.toml510
-rw-r--r--people/BurntSushi.toml1
-rw-r--r--people/Centril.toml1
-rw-r--r--people/Havvy.toml1
-rw-r--r--people/LucasBullen.toml2
-rw-r--r--people/Xanewok.toml1
-rw-r--r--people/alercah.toml1
-rw-r--r--people/alexheretic.toml1
-rw-r--r--people/arielb1.toml1
-rw-r--r--people/ashleygwilliams.toml2
-rw-r--r--people/autozimu.toml1
-rw-r--r--people/frewsxcv.toml1
-rw-r--r--people/ishitatsuyuki.toml1
-rw-r--r--people/jasonwilliams.toml1
-rw-r--r--people/jseyfried.toml1
-rw-r--r--people/llogiq.toml1
-rw-r--r--people/matklad.toml1
-rw-r--r--people/matthewjasper.toml1
-rw-r--r--people/michaelwoerister.toml2
-rw-r--r--people/nasa42.toml3
-rw-r--r--people/ollie27.toml1
-rw-r--r--people/onur.toml1
-rw-r--r--people/projektir.toml1
-rw-r--r--people/rpjohnst.toml1
-rw-r--r--people/skade.toml1
-rw-r--r--people/solson.toml1
-rw-r--r--people/ubsan.toml3
-rw-r--r--people/vlad20012.toml1
-rw-r--r--people/whitequark.toml1
-rw-r--r--src/data.rs17
-rw-r--r--src/main.rs13
-rw-r--r--src/schema.rs98
-rw-r--r--src/validate.rs86
-rw-r--r--teams/all.toml3
-rw-r--r--teams/cargo.toml4
-rw-r--r--teams/community.toml16
-rw-r--r--teams/compiler.toml18
-rw-r--r--teams/core.toml38
-rw-r--r--teams/crates-io.toml31
-rw-r--r--teams/devtools.toml12
-rw-r--r--teams/docs.toml10
-rw-r--r--teams/ecosystem.toml14
-rw-r--r--teams/ides.toml8
-rw-r--r--teams/infra.toml87
-rw-r--r--teams/lang.toml14
-rw-r--r--teams/leads.toml18
-rw-r--r--teams/libs.toml13
-rw-r--r--teams/mods.toml8
-rw-r--r--teams/release.toml4
-rw-r--r--teams/rustdoc.toml4
-rw-r--r--teams/security.toml14
-rw-r--r--teams/style.toml16
-rw-r--r--teams/twir.toml12
-rw-r--r--teams/wg-leads.toml11
56 files changed, 652 insertions, 558 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 8598a72..ffffe11 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1,4 +1,12 @@
[[package]]
+name = "ansi_term"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+dependencies = [
+ "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
name = "atty"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -30,6 +38,11 @@ dependencies = [
]
[[package]]
+name = "bitflags"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+
+[[package]]
name = "cc"
version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -40,6 +53,20 @@ version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
+name = "clap"
+version = "2.32.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+dependencies = [
+ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
+ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
+ "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
+ "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
name = "curl"
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -100,6 +127,14 @@ dependencies = [
]
[[package]]
+name = "heck"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+dependencies = [
+ "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
name = "humantime"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -164,6 +199,7 @@ dependencies = [
"serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)",
+ "structopt 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
"toml 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -278,6 +314,31 @@ dependencies = [
]
[[package]]
+name = "strsim"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+
+[[package]]
+name = "structopt"
+version = "0.2.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+dependencies = [
+ "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "structopt-derive 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
+name = "structopt-derive"
+version = "0.2.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+dependencies = [
+ "heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
+ "quote 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
+ "syn 0.15.17 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
name = "syn"
version = "0.15.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -317,6 +378,14 @@ dependencies = [
]
[[package]]
+name = "textwrap"
+version = "0.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+dependencies = [
+ "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
name = "toml"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -325,6 +394,16 @@ dependencies = [
]
[[package]]
+name = "unicode-segmentation"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+
+[[package]]
+name = "unicode-width"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+
+[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -335,6 +414,11 @@ version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
+name = "vec_map"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+
+[[package]]
name = "version_check"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -386,16 +470,20 @@ dependencies = [
]
[metadata]
+"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
"checksum backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a"
"checksum backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = "c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0"
+"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12"
"checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16"
"checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4"
+"checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e"
"checksum curl 0.4.18 (registry+https://github.com/rust-lang/crates.io-index)" = "a9e5285b49b44401518c947d3b808d14d99a538a6c9ffb3ec0205c11f9fc4389"
"checksum curl-sys 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "08459503c415173da1ce6b41036a37b8bfdd86af46d45abb9964d4c61fe670ef"
"checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38"
"checksum failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6dd377bcc1b1b7ce911967e3ec24fa19c3224394ec05b54aa7b083d498341ac7"
"checksum failure_derive 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "64c2d913fe8ed3b6c6518eedf4538255b989945c14c2a7d5cbff62a5e2120596"
+"checksum heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82"
"checksum humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0484fda3e7007f2a4a0d9c3a703ca38c71c54c55602ce4660c419fd32e188c9e"
"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b"
"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
@@ -418,13 +506,20 @@ dependencies = [
"checksum serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "225de307c6302bec3898c51ca302fc94a7a1697ef0845fcee6448f33c032249c"
"checksum serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)" = "43344e7ce05d0d8280c5940cabb4964bea626aa58b1ec0e8c73fa2a8512a38ce"
"checksum socket2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d11a52082057d87cb5caa31ad812f4504b97ab44732cd8359df2e9ff9f48e7"
+"checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550"
+"checksum structopt 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "41c4a2479a078509940d82773d90ff824a8c89533ab3b59cd3ce8b0c0e369c02"
+"checksum structopt-derive 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "5352090cfae7a2c85e1a31146268b53396106c88ca5d6ccee2e3fae83b6e35c2"
"checksum syn 0.15.17 (registry+https://github.com/rust-lang/crates.io-index)" = "3391038ebc3e4ab24eb028cb0ef2f2dc4ba0cbf72ee895ed6a6fad730640b5bc"
"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015"
"checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f"
"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
+"checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6"
"checksum toml 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "4a2ecc31b0351ea18b3fe11274b8db6e4d82bce861bbb22e6dbed40417902c65"
+"checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1"
+"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
"checksum vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d"
+"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0"
diff --git a/Cargo.toml b/Cargo.toml
index f8a37c2..83b3422 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,3 +13,4 @@ serde_derive = "1"
serde_json = "1"
log = "0.4"
env_logger = { version = "0.5", default-features = false }
+structopt = "0.2.13"
diff --git a/mailmap.toml b/mailmap.toml
index 4341d46..0438c42 100644
--- a/mailmap.toml
+++ b/mailmap.toml
@@ -1,274 +1,3 @@
-# All mailing lists managed on Mailgun.
-#
-# This file is synchronized to configuration on Mailgun via Travis whenever a
-# commit is pushed to master. Travis just runs `cargo run` for this. The
-# configuration for this file is one top-level key, `lists`, which is an array
-# of mailing lists.
-#
-# Each mailing list has three keys:
-#
-# * `address` - the email address of this mailing list (including the domain)
-# * `access_level` - one of the following:
-# * `readonly` - only authenticated users can post
-# * `members` - only members can post to the list
-# * `everyone` - anyone can post to the list
-# * `members` - an array of email addresses to forward mail to
-#
-# All mailing lists behave the same way. When an email is received it then
-# broadcasts the email to all users of the mailing list.
-#
-#
-# Current list of domains you can choose from:
-#
-# * rustlang.com
-# * rustlang.net
-
-[[lists]]
-address = 'admin@crates.io'
-access_level = 'everyone'
-members = [
- 'admin@rust-lang.org',
-]
-
-[[lists]]
-address = 'legal@crates.io'
-access_level = 'everyone'
-members = [
- 'core-team@rust-lang.org',
-]
-
-[[lists]]
-address = 'help@crates.io'
-access_level = 'everyone'
-members = [
- 'crates-io@rust-lang.org',
-]
-
-[[lists]]
-address = 'admin@rust-lang.org'
-access_level = 'everyone'
-members = [
- "alex@crichton.co",
- "aturon@mozilla.com",
-]
-
-[[lists]]
-address = 'all@rust-lang.org'
-access_level = 'everyone'
-members = [
- "community@rust-lang.org",
- "compiler@rust-lang.org",
- "core@rust-lang.org",
- "lang@rust-lang.org",
- "libs@rust-lang.org",
- "dev-tools@rust-lang.org",
- "docs@rust-lang.org",
- "infra@rust-lang.org",
- "release@rust-lang.org",
-]
-
-[[lists]]
-address = 'appveyor-libs@rust-lang.org'
-access_level = 'everyone'
-members = [
- "rust-ops@googlegroups.com",
-]
-
-[[lists]]
-address = 'appveyor@rust-lang.org'
-access_level = 'everyone'
-members = [
- "rust-ops@googlegroups.com",
-]
-
-[[lists]]
-address = 'bors@rust-lang.org'
-access_level = 'everyone'
-members = [
- "acrichton@mozilla.com",
-]
-
-[[lists]]
-address = 'cargo@rust-lang.org'
-access_level = 'everyone'
-members = [
- "acrichton@mozilla.com",
- "wycats@gmail.com",
- "woboats@gmail.com",
- "josh@joshtriplett.org",
- "ncameron@mozilla.com",
- "eric@huss.org",
- "eh2406@wayne.edu",
- "dale.wijnand@gmail.com",
-]
-
-[[lists]]
-address = 'community-team@rust-lang.org'
-access_level = 'everyone'
-members = [
- "community@rust-lang.org",
-]
-
-[[lists]]
-address = 'community@rust-lang.org'
-access_level = 'everyone'
-members = [
- "rust-community@googlegroups.com",
- "manishsmail@gmail.com",
- "booyaabooyaabooyaa@gmail.com",
- "janerik@fnordig.de",
- "ashley@integer32.com",
- "olivia@fastmail.com",
- "mrgould93@gmail.com",
- "amufti16@gmail.com",
- "parry.wilcox@gmail.com",
- "kookie@spacekookie.de",
- "flo@andersground.net",
- "rust@flaki.hu",
- "mattgathu@gmail.com",
- "celaus@gmail.com",
- "wes@wezm.net",
- "varma.sunjay@gmail.com",
-]
-
-[[lists]]
-address = 'compiler-team@rust-lang.org'
-access_level = 'everyone'
-members = [
- "compiler@rust-lang.org",
-]
-
-[[lists]]
-address = 'compiler@rust-lang.org'
-access_level = 'everyone'
-members = [
- "ariel.byd@gmail.com",
- "nrc@mozilla.com",
- "pnkfelix@mozilla.com",
- "edy.burt@gmail.com",
- "nmatsakis@mozilla.com",
- "michaelwoerister@gmail.com",
- "jeffrey.seyfried@gmail.com",
- "vadim.petrochenkov@gmail.com",
- "esteban@kuber.com.ar",
- "zoxc32@gmail.com",
- "cramertaylorj@gmail.com",
- "simonas+t-compiler@kazlauskas.me",
- "github@varkor.com",
-]
-
-[[lists]]
-address = 'core-team@rust-lang.org'
-access_level = 'everyone'
-members = [
- "core@rust-lang.org",
-]
-
-[[lists]]
-address = 'core@rust-lang.org'
-access_level = 'everyone'
-members = [
- "acrichton@mozilla.com",
- "wycats@gmail.com",
- "steve@steveklabnik.com",
- "aturon@mozilla.com",
- "nmatsakis@mozilla.com",
- "erick.tryzelaar@gmail.com",
- "nrc@mozilla.com",
- "carol.nichols@gmail.com",
- "mark.simulacrum@gmail.com",
- "ashley666ashley@gmail.com",
- "aidanhs@cantab.net",
-]
-
-[[lists]]
-address = 'craterbot@rust-lang.org'
-access_level = 'everyone'
-members = [
- "infra@rust-lang.org",
-]
-
-[[lists]]
-address = 'crates-io-cert@rust-lang.org'
-access_level = 'everyone'
-members = [
- "rust-ops@googlegroups.com",
-]
-
-[[lists]]
-address = 'crates-io@rust-lang.org'
-access_level = 'everyone'
-members = [
- "ashley@integer32.com",
- "carol.nichols@gmail.com",
- "acrichton@mozilla.com",
- "sean@seantheprogrammer.com",
-]
-
-[[lists]]
-address = 'dev-tools@rust-lang.org'
-access_level = 'everyone'
-members = [
- "woboats@gmail.com",
- "manishsmail@gmail.com",
- "steve@steveklabnik.com",
- "nfitzgerald@mozilla.com",
- "japaricious@gmail.com",
- "killercup@gmail.com",
- "ncameron@mozilla.com",
-]
-
-[[lists]]
-address = 'dmarc-rua@rust-lang.org'
-access_level = 'everyone'
-members = [
- "rust-ops@googlegroups.com",
-]
-
-[[lists]]
-address = 'doc-team@rust-lang.org'
-access_level = 'everyone'
-members = [
- "docs@rust-lang.org",
-]
-
-[[lists]]
-address = 'docker-hub-rustci@rust-lang.org'
-access_level = 'everyone'
-members = [
- "rust-ops@googlegroups.com",
-]
-
-[[lists]]
-address = 'docs@rust-lang.org'
-access_level = 'everyone'
-members = [
- "steve@steveklabnik.com",
- "guillaume1.gomez@gmail.com",
- "grey@quietmisdreavus.net",
- "coreyf@rwell.org",
- "oprojektir@gmail.com",
- "ryan.havvy@gmail.com",
- "alercah@gmail.com",
-]
-
-[[lists]]
-address = 'ecosystem@rust-lang.org'
-access_level = 'everyone'
-members = [
- "ashleymannix@live.com.au",
- "woboats@gmail.com",
- "sfackler@gmail.com",
- "aturon@mozilla.com",
-]
-
-[[lists]]
-address = 'editors@rust-lang.org'
-access_level = 'everyone'
-members = [
- "ides@rust-lang.org",
-]
-
[[lists]]
address = 'embedded-wg@rust-lang.org'
access_level = 'everyone'
@@ -284,125 +13,6 @@ members = [
]
[[lists]]
-address = 'ides@rust-lang.org'
-access_level = 'everyone'
-members = [
- "beskvlad@gmail.com",
- "alexheretic@gmail.com",
- "jase.williams@gmail.com",
- "autozimu@gmail.com",
- "lbullen@redhat.com",
- "aleksey.kladov@gmail.com",
- "xanewok@gmail.com",
- "ncameron@mozilla.com",
-]
-
-[[lists]]
-address = 'infra-team@rust-lang.org'
-access_level = 'everyone'
-members = [
- "infra@rust-lang.org",
-]
-
-[[lists]]
-address = 'infra@rust-lang.org'
-access_level = 'everyone'
-members = [
- "erick.tryzelaar@gmail.com",
- "mail@timnn.me",
- "jake.goulding@gmail.com",
- "acrichton@mozilla.com",
- "aidanhs@cantab.net",
- "mark.simulacrum@gmail.com",
- "aturon@mozilla.com",
- "kennytm@gmail.com",
- "ashley@integer32.com",
- "sean@seantheprogrammer.com",
- "pietro@pietroalbini.org",
-]
-
-[[lists]]
-address = 'lang-private@rust-lang.org'
-access_level = 'everyone'
-members = [
- "nmatsakis@mozilla.com",
- "nrc@mozilla.com",
- "pnkfelix@mozilla.com",
- "aturon@mozilla.com",
- "edy.burt@gmail.com",
- "woboats@gmail.com",
- "cramertaylorj@gmail.com",
- "josh@joshtriplett.org",
- "smcmurray@acm.org",
- "twingoow@gmail.com",
-]
-
-[[lists]]
-address = 'lang@rust-lang.org'
-access_level = 'everyone'
-members = [
- "lang-private@rust-lang.org",
- "scott@solson.me",
- "whitequark@whitequark.org",
-]
-
-[[lists]]
-address = 'language-design-team@rust-lang.org'
-access_level = 'everyone'
-members = [
- "lang@rust-lang.org",
-]
-
-[[lists]]
-address = 'leads@rust-lang.org'
-access_level = 'everyone'
-members = [
- "wg-leads@rust-lang.org",
- "aturon@mozilla.com",
- "ashley@integer32.com",
- "nmatsakis@mozilla.com",
- "nrc@mozilla.com",
- "aidanhs@cantab.net",
- "mark.simulacrum@gmail.com",
- "steve@steveklabnik.com",
-]
-
-[[lists]]
-address = 'library-team@rust-lang.org'
-access_level = 'everyone'
-members = [
- "libs@rust-lang.org",
-]
-
-[[lists]]
-address = 'libs-private@rust-lang.org'
-access_level = 'everyone'
-members = [
- "acrichton@mozilla.com",
- "aturon@mozilla.com",
- "sfackler@gmail.com",
- "jamslam@gmail.com",
- "loebel.marvin@gmail.com",
- "dtolnay@gmail.com",
- "ssapin@mozilla.com",
-]
-
-[[lists]]
-address = 'libs@rust-lang.org'
-access_level = 'everyone'
-members = [
- "acrichton@mozilla.com",
- "aturon@mozilla.com",
- "sfackler@gmail.com",
- "jamslam@gmail.com",
- "loebel.marvin@gmail.com",
- "dtolnay@gmail.com",
- "ashleymannix@live.com.au",
- "woboats@gmail.com",
- "ssapin@mozilla.com",
-]
-
-[[lists]]
address = 'net@rust-lang.org'
access_level = 'everyone'
members = [
@@ -456,16 +66,6 @@ members = [
]
[[lists]]
-address = 'production@rust-lang.org'
-access_level = 'everyone'
-members = [
- "aidanhs@cantab.net",
- "nrc@mozilla.com",
- "claus.matzinger@gmail.com",
- "aturon@mozilla.com",
-]
-
-[[lists]]
address = 'reach@rust-lang.org'
access_level = 'everyone'
members = [
@@ -476,28 +76,6 @@ members = [
]
[[lists]]
-address = 'release@rust-lang.org'
-access_level = 'everyone'
-members = [
- "mark.simulacrum@gmail.com",
- "sertac.olgunsoylu@gmail.com",
- "justplayyeh@gmail.com",
- "cuviper@gmail.com",
- "trevorreiff@gmail.com",
- "joe@unicornclouds.com",
- "theaaronepower@gmail.com",
- "pramodpsb@hotmail.com",
- "cssivision@gmail.com",
- "araz@abishov.com",
- "pietro@pietroalbini.org",
- "dyxushuai@gmail.com",
- "batmanaod@gmail.com",
- "adrianquiroga@outlook.com",
- "hanquang@outlook.com",
- "sean@seantheprogrammer.com",
-]
-
-[[lists]]
address = 'rust-2018@rust-lang.org'
access_level = 'everyone'
members = [
@@ -516,13 +94,6 @@ members = [
]
[[lists]]
-address = 'rust-dev-tools@rust-lang.org'
-access_level = 'everyone'
-members = [
- "dev-tools@rust-lang.org",
-]
-
-[[lists]]
address = 'rust-icci@rust-lang.org'
access_level = 'everyone'
members = [
@@ -530,21 +101,6 @@ members = [
]
[[lists]]
-address = 'rust-key@rust-lang.org'
-access_level = 'everyone'
-members = [
- "acrichton@mozilla.com",
- "aturon@mozilla.com",
-]
-
-[[lists]]
-address = 'rust-mods@rust-lang.org'
-access_level = 'everyone'
-members = [
- "rust-mods@googlegroups.com",
-]
-
-[[lists]]
address = 'rustbridge@rust-lang.org'
access_level = 'everyone'
members = [
@@ -553,61 +109,6 @@ members = [
]
[[lists]]
-address = 'rustdoc@rust-lang.org'
-access_level = 'everyone'
-members = [
- "grey@quietmisdreavus.net",
- "steve@steveklabnik.com",
- "guillaume1.gomez@gmail.com",
- "olliemail27@gmail.com",
- "onuraslan@gmail.com",
-]
-
-[[lists]]
-address = 'security@rust-lang.org'
-access_level = 'everyone'
-members = [
- "acrichton@mozilla.com",
- "nmatsakis@mozilla.com",
- "steve@steveklabnik.com",
- "wycats@gmail