Skip to content

Commit be081f1

Browse files
committed
add 2 arm target into workflow; add license; common dep update
1 parent ce2ce15 commit be081f1

File tree

4 files changed

+69
-92
lines changed

4 files changed

+69
-92
lines changed

.github/workflows/build-release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
target:
1818
- x86_64-unknown-linux-musl
1919
- aarch64-unknown-linux-musl
20+
- armv7-unknown-linux-musleabihf
21+
- arm-unknown-linux-musleabi
2022

2123
steps:
2224
- uses: actions/checkout@v2

Cargo.lock

+38-90
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ monoio = {version = "0.0.9"}
1414
monoio-rustls = {version = "0.0.7"}
1515

1616
anyhow = "1"
17-
clap = {version = "3", features = ["derive"]}
17+
clap = {version = "4", features = ["derive"]}
1818
hmac = "0.12"
1919
pin-project-lite = "0.2"
2020
rustls = {version = "0.20", default-features = false}
2121
sha1 = "0.10"
2222
tracing = "0.1"
23-
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
23+
tracing-subscriber = {version = "0.3", features = ["env-filter"]}
2424
webpki-roots = "0.22"
2525

2626
[profile.release]

LICENSE

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2022 ihciah <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any
6+
person obtaining a copy of this software and associated
7+
documentation files (the "Software"), to deal in the
8+
Software without restriction, including without
9+
limitation the rights to use, copy, modify, merge,
10+
publish, distribute, sublicense, and/or sell copies of
11+
the Software, and to permit persons to whom the Software
12+
is furnished to do so, subject to the following
13+
conditions:
14+
15+
The above copyright notice and this permission notice
16+
shall be included in all copies or substantial portions
17+
of the Software.
18+
19+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
20+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
21+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
22+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
23+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
26+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27+
DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)