Merge branch 'main' of github.com:Nilstrieb/cargo-bisect-rustc-service

This commit is contained in:
nora 2022-09-29 20:18:10 +02:00
commit e84b52a4ab
2 changed files with 3 additions and 1 deletions

View file

@ -1,2 +1,4 @@
# cargo-bisect-rustc-service
a small web service that bisects rustc for you
https://nilstrieb.dev/bisect-rustc

View file

@ -36,7 +36,7 @@ async fn main() -> color_eyre::Result<()> {
)
.init();
let (job_queue_send, job_queue_recv) = mpsc::channel();
let (job_queue_send, job_queue_recv) = mpsc::channel(); // FIXME: make this a sync_channel because bounds are cool
let sqlite_db = env::var("SQLITE_DB").unwrap_or_else(|_| "bisect.sqlite".to_string());