fastbencode 0.3.5__tar.gz → 0.3.6__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.
- {fastbencode-0.3.5 → fastbencode-0.3.6}/Cargo.toml +1 -1
- {fastbencode-0.3.5/fastbencode.egg-info → fastbencode-0.3.6}/PKG-INFO +2 -2
- {fastbencode-0.3.5 → fastbencode-0.3.6}/fastbencode/__init__.py +1 -1
- {fastbencode-0.3.5 → fastbencode-0.3.6/fastbencode.egg-info}/PKG-INFO +2 -2
- {fastbencode-0.3.5 → fastbencode-0.3.6}/fastbencode.egg-info/requires.txt +1 -1
- {fastbencode-0.3.5 → fastbencode-0.3.6}/pyproject.toml +1 -1
- {fastbencode-0.3.5 → fastbencode-0.3.6}/setup.py +1 -2
- {fastbencode-0.3.5 → fastbencode-0.3.6}/COPYING +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/MANIFEST.in +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/README.md +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/fastbencode/_bencode_py.py +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/fastbencode/py.typed +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/fastbencode.egg-info/SOURCES.txt +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/fastbencode.egg-info/dependency_links.txt +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/fastbencode.egg-info/top_level.txt +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/setup.cfg +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/src/lib.rs +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/tests/__init__.py +0 -0
- {fastbencode-0.3.5 → fastbencode-0.3.6}/tests/test_bencode.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastbencode
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
4
4
|
Summary: Implementation of bencode with optional fast Rust extensions
|
|
5
5
|
Maintainer-email: Breezy Developers <breezy-core@googlegroups.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -21,7 +21,7 @@ License-File: COPYING
|
|
|
21
21
|
Provides-Extra: rust
|
|
22
22
|
Requires-Dist: setuptools-rust>=1.0.0; extra == "rust"
|
|
23
23
|
Provides-Extra: dev
|
|
24
|
-
Requires-Dist: ruff==0.
|
|
24
|
+
Requires-Dist: ruff==0.13.0; extra == "dev"
|
|
25
25
|
Dynamic: license-file
|
|
26
26
|
|
|
27
27
|
fastbencode
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastbencode
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
4
4
|
Summary: Implementation of bencode with optional fast Rust extensions
|
|
5
5
|
Maintainer-email: Breezy Developers <breezy-core@googlegroups.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -21,7 +21,7 @@ License-File: COPYING
|
|
|
21
21
|
Provides-Extra: rust
|
|
22
22
|
Requires-Dist: setuptools-rust>=1.0.0; extra == "rust"
|
|
23
23
|
Provides-Extra: dev
|
|
24
|
-
Requires-Dist: ruff==0.
|
|
24
|
+
Requires-Dist: ruff==0.13.0; extra == "dev"
|
|
25
25
|
Dynamic: license-file
|
|
26
26
|
|
|
27
27
|
fastbencode
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/python3
|
|
2
2
|
|
|
3
|
-
import sys
|
|
4
3
|
|
|
5
4
|
from setuptools import setup
|
|
6
5
|
from setuptools_rust import Binding, RustExtension
|
|
@@ -11,7 +10,7 @@ setup(
|
|
|
11
10
|
"fastbencode._bencode_rs",
|
|
12
11
|
binding=Binding.PyO3,
|
|
13
12
|
py_limited_api=False,
|
|
14
|
-
optional=
|
|
13
|
+
optional=True,
|
|
15
14
|
)
|
|
16
15
|
],
|
|
17
16
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|