File tree 5 files changed +443
-0
lines changed
5 files changed +443
-0
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ pull_request :
3
+ push :
4
+ branches :
5
+ - master
6
+
7
+ name : CI
8
+
9
+ jobs :
10
+ ci :
11
+ runs-on : ubuntu-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v3
15
+ - uses : dtolnay/rust-toolchain@master
16
+ with :
17
+ toolchain : stable
18
+ components : rustfmt, clippy
19
+ - run : cargo fmt --all --check -- --config=imports_granularity=Crate
20
+ - run : cargo install cargo-hack
21
+ - run : cargo hack clippy --workspace --each-feature -- -D warnings
22
+ - run : cargo hack test --workspace --each-feature
Original file line number Diff line number Diff line change
1
+ /target
2
+ ** /* .rs.bk
3
+ Cargo.lock
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ name = " reqwest-ext"
3
+ description = " Extensions for reqwest"
4
+ version = " 0.1.0"
5
+ authors = [
" Artem Vorotnikov <[email protected] >" ]
6
+ license = " MPL-2.0"
7
+ edition = " 2021"
8
+
9
+ [dependencies ]
10
+ headers = " 0.3"
11
+ reqwest = { version = " 0.11" , default-features = false }
12
+ sealed = " 0.5"
You can’t perform that action at this time.
0 commit comments