summaryrefslogtreecommitdiffstats
path: root/builder
diff options
context:
space:
mode:
authorKornel <kornel@geekhood.net>2019-09-05 04:00:29 +0100
committerKornel <kornel@geekhood.net>2019-09-05 04:00:29 +0100
commit7f49688a5012ab3b77e460be4943b309616df39b (patch)
treea6e3fbfa944d96e87fdca4f606471b89d6db1c26 /builder
parentb3fe5f737f58b6bde586c8968af83caf4bb4a2e0 (diff)
fudge
Diffstat (limited to 'builder')
-rw-r--r--builder/src/bin/export.rs24
-rw-r--r--builder/src/bin/import.rs2
2 files changed, 20 insertions, 6 deletions
diff --git a/builder/src/bin/export.rs b/builder/src/bin/export.rs
index c406c41..b7e461e 100644
--- a/builder/src/bin/export.rs
+++ b/builder/src/bin/export.rs
@@ -11,14 +11,28 @@ fn main() {
let db = BuildDb::new(crates.main_cache_dir().join("builds.db")).unwrap();
let mut outputs = BTreeSet::new();
- println!("9.9.9 winapi <=0.1.17");
- println!("9.9.9 libc ^0.1.0");
- println!("9.9.9 semver <=0.1.5");
println!("9.9.9 gcc <=0.3.0");
+ println!("9.9.9 backtrace <=0.1.8");
+ println!("9.9.9 backtrace =0.2.2");
+ println!("9.9.9 backtrace =0.2.3");
println!("9.9.9 lazy_static <=0.1.0");
- println!("9.9.9 rustc-serialize <=0.3.21");
- println!("9.9.9 rand <=0.3.8");
+ println!("9.9.9 libc ^0.1.0");
+ println!("9.9.9 mio <=0.3.7");
+ println!("9.9.9 mio =0.6.0");
+ println!("9.9.9 nix =0.5.0");
+ println!("9.9.9 num <=0.1.25");
println!("9.9.9 pkg-config <=0.3.2");
+ println!("1.24.0 pkg-config >=0.3.15");
+ println!("1.24.0 regex-syntax >=0.6.9");
+ println!("1.24.0 rustc-demangle >=0.1.16");
+ println!("9.9.9 rand <=0.3.8");
+ println!("9.9.9 rustc-serialize <=0.3.21");
+ println!("9.9.9 semver <=0.1.5");
+ println!("9.9.9 tokio-io <=0.1.2");
+ println!("9.9.9 tokio-reactor <=0.1.0");
+ println!("9.9.9 variants =0.0.1");
+ println!("9.9.9 void <=0.0.4");
+ println!("9.9.9 winapi <=0.1.17");
for c in db.get_all_compat().unwrap() {
if !c.origin.is_crates_io() || c.origin.short_crate_name() != "getopts" {
diff --git a/builder/src/bin/import.rs b/builder/src/bin/import.rs
index efb0af3..7f36270 100644
--- a/builder/src/bin/import.rs
+++ b/builder/src/bin/import.rs
@@ -10,7 +10,7 @@ fn main() {
let db = BuildDb::new(crates.main_cache_dir().join("builds.db")).unwrap();
let lts = LTS::new(None);
- for (rustc_version, date) in &[("1.14.0", "2017-02-01"), ("1.19.0", "2017-08-20"), ("1.24.0", "2018-03-28"), ("1.34.0", "2019-05-28")] {
+ for (rustc_version, date) in &[("1.14.0", "2017-02-01"), ("1.19.0", "2017-08-20"), ("1.21.0", "2017-11-21"), ("1.24.0", "2018-03-28"), ("1.32.0", "2019-02-27"), ("1.34.0", "2019-05-28")] {
let old_branch = lts.cut_branch_at(date).unwrap();
let old_repo = Path::new("/tmp").join(format!("oldcratesfilter-{}-{}", rustc_version, date));
lts.clone_to(&old_branch, &old_repo, false).unwrap();