rnet 3.0.0rc6__tar.gz → 3.0.0rc8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rnet might be problematic. Click here for more details.
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/.github/FUNDING.yml +2 -2
- rnet-3.0.0rc8/.github/assets/hypersolutions.jpg +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/.github/workflows/ci.yml +1 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/.gitignore +3 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/Cargo.lock +111 -380
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/Cargo.toml +4 -4
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/PKG-INFO +22 -6
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/README.md +21 -5
- rnet-3.0.0rc8/python/examples/emulation.py +177 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/rnet/__init__.py +4 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/rnet/__init__.pyi +262 -97
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/rnet/emulation.py +8 -2
- rnet-3.0.0rc8/python/rnet/http1.py +67 -0
- rnet-3.0.0rc8/python/rnet/http2.py +352 -0
- rnet-3.0.0rc8/python/rnet/tls.py +419 -0
- {rnet-3.0.0rc6/src/rt → rnet-3.0.0rc8/src/bridge}/mod.rs +52 -8
- {rnet-3.0.0rc6/src/rt → rnet-3.0.0rc8/src/bridge}/sync.rs +3 -6
- {rnet-3.0.0rc6/src/rt → rnet-3.0.0rc8/src/bridge}/task.rs +11 -7
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/buffer.rs +5 -1
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/body/mod.rs +4 -3
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/body/multipart.rs +4 -3
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/mod.rs +35 -2
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/nogil.rs +1 -1
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/resp/http.rs +1 -1
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/resp/stream.rs +1 -1
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/resp/ws/cmd.rs +1 -1
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/resp/ws/mod.rs +2 -2
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/resp/ws/msg.rs +2 -2
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/emulation.rs +8 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/extractor.rs +11 -11
- rnet-3.0.0rc8/src/http1.rs +105 -0
- rnet-3.0.0rc8/src/http2.rs +448 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/lib.rs +100 -27
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/macros.rs +1 -11
- rnet-3.0.0rc8/src/tls/mod.rs +385 -0
- rnet-3.0.0rc6/python/examples/emulation.py +0 -77
- rnet-3.0.0rc6/python/rnet/tls.py +0 -151
- rnet-3.0.0rc6/src/rt/util.rs +0 -42
- rnet-3.0.0rc6/src/tls/mod.rs +0 -25
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/.github/assets/capsolver.jpg +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/.github/dependabot.yml +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/.github/musl_build.sh +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/LICENSE +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/pyproject.toml +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/benchmark/README.md +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/benchmark/bench.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/benchmark/benchmark_multi.jpg +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/benchmark/benchmark_multi_threaded.jpg +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/benchmark/benchmark_results.csv +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/benchmark/chart.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/benchmark/core.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/benchmark/requirements.txt +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/benchmark/server.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/auth.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/basic_auth.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/bearer_auth.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/auth.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/basic_auth.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/bearer_auth.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/body.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/client.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/cookie.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/emulation.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/form.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/get.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/json.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/multipart.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/proxy.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/query.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/blocking/stream.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/body.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/client.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/exceptions.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/form.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/get.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/header_map.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/http1_websocket.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/http2_websocket.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/json.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/keylog.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/multipart.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/orig_headers.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/proxy.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/query.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/request.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/examples/stream.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/rnet/blocking.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/rnet/cookie.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/rnet/exceptions.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/rnet/header.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/python/rnet/py.typed +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/dns.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/req.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/resp/history.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/client/resp/mod.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/error.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/http/cookie.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/http/header.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/http/mod.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/http/status.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/proxy.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/tls/identity.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/tls/keylog.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/src/tls/store.rs +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/tests/cookie_test.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/tests/header_test.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/tests/redirect_test.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/tests/request_test.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/tests/response_test.py +0 -0
- {rnet-3.0.0rc6 → rnet-3.0.0rc8}/tests/tls_test.py +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
|
4
4
|
patreon: # Replace with a single Patreon username
|
|
5
5
|
open_collective: # Replace with a single Open Collective username
|
|
6
|
-
ko_fi:
|
|
6
|
+
ko_fi:
|
|
7
7
|
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
|
8
8
|
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
|
9
9
|
liberapay: # Replace with a single Liberapay username
|
|
@@ -12,4 +12,4 @@ lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cl
|
|
|
12
12
|
polar: # Replace with a single Polar username
|
|
13
13
|
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
|
|
14
14
|
thanks_dev: # Replace with a single thanks.dev username
|
|
15
|
-
custom:
|
|
15
|
+
custom: ['https://github.com/0x676e67/0x676e67/blob/main/SPONSOR.md']
|
|
Binary file
|