Skip to content

Commit 1eba400

Browse files
committed
Initial commit
0 parents  commit 1eba400

File tree

5 files changed

+443
-0
lines changed

5 files changed

+443
-0
lines changed

.github/workflows/main.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
**/*.rs.bk
3+
Cargo.lock

Cargo.toml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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"

0 commit comments

Comments
 (0)