rnet 3.0.0rc6__tar.gz → 3.0.0rc7__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.

Files changed (111) hide show
  1. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/.github/FUNDING.yml +2 -2
  2. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/.github/workflows/ci.yml +1 -0
  3. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/.gitignore +3 -0
  4. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/Cargo.lock +97 -366
  5. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/Cargo.toml +4 -4
  6. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/PKG-INFO +9 -11
  7. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/README.md +8 -10
  8. rnet-3.0.0rc7/python/examples/emulation.py +177 -0
  9. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/rnet/__init__.py +4 -0
  10. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/rnet/__init__.pyi +262 -97
  11. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/rnet/emulation.py +8 -2
  12. rnet-3.0.0rc7/python/rnet/http1.py +67 -0
  13. rnet-3.0.0rc7/python/rnet/http2.py +352 -0
  14. rnet-3.0.0rc7/python/rnet/tls.py +419 -0
  15. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/buffer.rs +5 -1
  16. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/mod.rs +34 -1
  17. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/resp/ws/cmd.rs +1 -1
  18. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/resp/ws/mod.rs +1 -1
  19. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/resp/ws/msg.rs +2 -2
  20. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/emulation.rs +8 -0
  21. rnet-3.0.0rc7/src/http1.rs +105 -0
  22. rnet-3.0.0rc7/src/http2.rs +448 -0
  23. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/lib.rs +50 -1
  24. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/macros.rs +0 -10
  25. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/rt/mod.rs +1 -1
  26. rnet-3.0.0rc7/src/tls/mod.rs +385 -0
  27. rnet-3.0.0rc6/.github/assets/capsolver.jpg +0 -0
  28. rnet-3.0.0rc6/python/examples/emulation.py +0 -77
  29. rnet-3.0.0rc6/python/rnet/tls.py +0 -151
  30. rnet-3.0.0rc6/src/tls/mod.rs +0 -25
  31. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  32. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  33. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/.github/dependabot.yml +0 -0
  34. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/.github/musl_build.sh +0 -0
  35. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/LICENSE +0 -0
  36. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/pyproject.toml +0 -0
  37. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/benchmark/README.md +0 -0
  38. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/benchmark/bench.py +0 -0
  39. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/benchmark/benchmark_multi.jpg +0 -0
  40. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/benchmark/benchmark_multi_threaded.jpg +0 -0
  41. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/benchmark/benchmark_results.csv +0 -0
  42. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/benchmark/chart.py +0 -0
  43. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/benchmark/core.py +0 -0
  44. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/benchmark/requirements.txt +0 -0
  45. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/benchmark/server.py +0 -0
  46. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/auth.py +0 -0
  47. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/basic_auth.py +0 -0
  48. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/bearer_auth.py +0 -0
  49. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/auth.py +0 -0
  50. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/basic_auth.py +0 -0
  51. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/bearer_auth.py +0 -0
  52. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/body.py +0 -0
  53. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/client.py +0 -0
  54. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/cookie.py +0 -0
  55. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/emulation.py +0 -0
  56. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/form.py +0 -0
  57. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/get.py +0 -0
  58. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/json.py +0 -0
  59. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/multipart.py +0 -0
  60. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/proxy.py +0 -0
  61. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/query.py +0 -0
  62. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/blocking/stream.py +0 -0
  63. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/body.py +0 -0
  64. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/client.py +0 -0
  65. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/exceptions.py +0 -0
  66. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/form.py +0 -0
  67. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/get.py +0 -0
  68. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/header_map.py +0 -0
  69. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/http1_websocket.py +0 -0
  70. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/http2_websocket.py +0 -0
  71. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/json.py +0 -0
  72. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/keylog.py +0 -0
  73. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/multipart.py +0 -0
  74. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/orig_headers.py +0 -0
  75. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/proxy.py +0 -0
  76. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/query.py +0 -0
  77. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/request.py +0 -0
  78. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/examples/stream.py +0 -0
  79. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/rnet/blocking.py +0 -0
  80. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/rnet/cookie.py +0 -0
  81. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/rnet/exceptions.py +0 -0
  82. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/rnet/header.py +0 -0
  83. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/python/rnet/py.typed +0 -0
  84. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/body/mod.rs +0 -0
  85. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/body/multipart.rs +0 -0
  86. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/dns.rs +0 -0
  87. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/nogil.rs +0 -0
  88. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/req.rs +0 -0
  89. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/resp/history.rs +0 -0
  90. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/resp/http.rs +0 -0
  91. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/resp/mod.rs +0 -0
  92. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/client/resp/stream.rs +0 -0
  93. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/error.rs +0 -0
  94. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/extractor.rs +0 -0
  95. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/http/cookie.rs +0 -0
  96. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/http/header.rs +0 -0
  97. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/http/mod.rs +0 -0
  98. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/http/status.rs +0 -0
  99. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/proxy.rs +0 -0
  100. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/rt/sync.rs +0 -0
  101. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/rt/task.rs +0 -0
  102. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/rt/util.rs +0 -0
  103. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/tls/identity.rs +0 -0
  104. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/tls/keylog.rs +0 -0
  105. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/src/tls/store.rs +0 -0
  106. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/tests/cookie_test.py +0 -0
  107. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/tests/header_test.py +0 -0
  108. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/tests/redirect_test.py +0 -0
  109. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/tests/request_test.py +0 -0
  110. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/tests/response_test.py +0 -0
  111. {rnet-3.0.0rc6 → rnet-3.0.0rc7}/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: '0x676e67'
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: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
15
+ custom: ['https://github.com/0x676e67/0x676e67/blob/main/SPONSOR.md']
@@ -41,6 +41,7 @@ jobs:
41
41
  - uses: actions-rs/toolchain@v1
42
42
  with:
43
43
  toolchain: stable
44
+ components: rustfmt, clippy
44
45
  override: true
45
46
 
46
47
  - name: Style check
@@ -77,3 +77,6 @@ uv.lock
77
77
 
78
78
  # wheel package
79
79
  dist
80
+
81
+ keylog.txt
82
+ *.json