diff options
author | Teddy Wing | 2021-06-03 20:57:14 +0200 |
---|---|---|
committer | Teddy Wing | 2021-06-03 20:57:14 +0200 |
commit | 654a5b5b58bead8a707d325e79d86bbe93ea2345 (patch) | |
tree | fbe71cedfdc3a59f02249ee913d1c3ed8f844e7a /src | |
parent | 83d581d674bfd1b28a9dd047a649822e882759bc (diff) | |
download | reflectub-654a5b5b58bead8a707d325e79d86bbe93ea2345.tar.bz2 |
main(): Use a smaller forked repository for testing
The Angular.js repo was 51 MB, while DDHotKey is 95 K.
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs index fe6836d..465325e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -31,13 +31,15 @@ async fn main() { async fn run() -> anyhow::Result<()> { let test_repos = vec![ github::Repo { - id: 18086664, - name: "angular.js".to_owned(), - description: None, + id: 345367151, + name: "DDHotKey".to_owned(), + description: Some( + "Simple Cocoa global hotkeys".to_owned(), + ), fork: true, - git_url: "git://github.com/teddywing/angular.js.git".to_owned(), + git_url: "git://github.com/teddywing/DDHotKey.git".to_owned(), default_branch: "master".to_owned(), - updated_at: "2014-03-25T06:55:16Z".to_owned(), + updated_at: "2021-03-07T14:27:06Z".to_owned(), }, github::Repo { id: 312106271, |