Skip to content

Commit

Permalink
feat: make team command work
Browse files Browse the repository at this point in the history
  • Loading branch information
washbin committed Oct 7, 2022
1 parent 74fb416 commit b75d30d
Show file tree
Hide file tree
Showing 10 changed files with 121 additions and 240 deletions.
159 changes: 22 additions & 137 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ license = "MIT"

[dependencies]
tokio = { version = "1.17.0", features=["macros", "rt-multi-thread"] }
serenity = { version = "0.11.1"}
serenity = { default-features=false, version = "0.11.1", features=["client", "gateway", "rustls_backend", "model"]}
serde = { version = "1.0.136", features=["derive"] }
dotenvy = "0.15.5"
envy = "0.4.2"
reqwest = "0.11.12"
reqwest = { version = "0.11.12", features = ["blocking", "json"] }
ureq = "2.5.0"
serde_json = "1.0.85"
8 changes: 4 additions & 4 deletions REQUIREMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
# TODO

- [ ] Teams
- [ ] Score
- [ ] Total PRs
- [ ] Total PRs Deleted
- [x] Teams
- [x] Score
- [x] Total PRs
- [x] Total PRs Deleted
- [ ] Users
- [ ] Search
- [ ] Info (no email)
2 changes: 1 addition & 1 deletion rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
edition = "2021"
use_field_init_shorthand = true
use_try_shorthand = true
use_try_shorthand = true
33 changes: 0 additions & 33 deletions src/commands/id.rs

This file was deleted.

1 change: 0 additions & 1 deletion src/commands/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
pub mod id;
pub mod team;
Loading

0 comments on commit b75d30d

Please sign in to comment.