Skip to content

Commit

Permalink
fix: 🎇改进输出
Browse files Browse the repository at this point in the history
  • Loading branch information
LycasLdt committed Feb 6, 2024
1 parent 581da28 commit aec437b
Show file tree
Hide file tree
Showing 12 changed files with 318 additions and 119 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install OpenSSL
shell: bash
run: |
case ${{ matrix.os }} in
ubuntu-*) sudo apt-get install pkg-config libssl-dev ;;
macos-*) brew install openssl@3 ;;
esac
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: rabdog
Expand Down
115 changes: 77 additions & 38 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build = "build.rs"

[dependencies]
clap = { version = "4.4", features = ["derive"] }
console = "0.15"
owo-colors = "4"
indicatif = "0.17"

# Utils
Expand All @@ -29,7 +29,7 @@ zip = { version = "0.6", features = ["deflate"]}
cbc = { version = "0.1", features = ["std"] }
percent-encoding = "2.3"

tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros"] }
tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros", "signal"] }
reqwest = { version = "0.11", features = ["json"] }
futures = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 lycasldt
Copyright (c) 2024 lycasldt

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
Loading

0 comments on commit aec437b

Please sign in to comment.