Skip to content

Commit c6e9557

Browse files
authored
Merge pull request #41 from FuzzingLabs/cleanup/remove-dead-code
refactor: remove dead code from OSS
2 parents be55bd3 + 829e8b9 commit c6e9557

File tree

41 files changed

+31
-1277
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+31
-1277
lines changed

fuzzforge-cli/pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ readme = "README.md"
77
requires-python = ">=3.14"
88
dependencies = [
99
"fuzzforge-runner==0.0.1",
10-
"fuzzforge-types==0.0.1",
1110
"rich>=14.0.0",
1211
"typer==0.20.1",
1312
]
@@ -27,4 +26,3 @@ fuzzforge = "fuzzforge_cli.__main__:main"
2726

2827
[tool.uv.sources]
2928
fuzzforge-runner = { workspace = true }
30-
fuzzforge-types = { workspace = true }

fuzzforge-common/pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = []
66
readme = "README.md"
77
requires-python = ">=3.14"
88
dependencies = [
9-
"fuzzforge-types==0.0.1",
109
"podman==5.6.0",
1110
"pydantic==2.12.4",
1211
"structlog>=24.0.0",
@@ -22,5 +21,4 @@ tests = [
2221
"pytest==9.0.2",
2322
]
2423

25-
[tool.uv.sources]
26-
fuzzforge-types = { workspace = true }
24+

fuzzforge-common/src/fuzzforge_common/__init__.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
33
This package provides:
44
- Sandbox engine abstractions (Podman, Docker)
5-
- Storage abstractions (S3) - requires 'storage' extra
65
- Common exceptions
76
87
Example usage:
@@ -12,9 +11,6 @@
1211
Podman,
1312
PodmanConfiguration,
1413
)
15-
16-
# For storage (requires boto3):
17-
from fuzzforge_common.storage import Storage
1814
"""
1915

2016
from fuzzforge_common.exceptions import FuzzForgeError
@@ -29,26 +25,14 @@
2925
PodmanConfiguration,
3026
)
3127

32-
# Storage exceptions are always available (no boto3 required)
33-
from fuzzforge_common.storage.exceptions import (
34-
FuzzForgeStorageError,
35-
StorageConnectionError,
36-
StorageDownloadError,
37-
StorageUploadError,
38-
)
39-
4028
__all__ = [
4129
"AbstractFuzzForgeEngineConfiguration",
4230
"AbstractFuzzForgeSandboxEngine",
4331
"Docker",
4432
"DockerConfiguration",
4533
"FuzzForgeError",
4634
"FuzzForgeSandboxEngines",
47-
"FuzzForgeStorageError",
4835
"ImageInfo",
4936
"Podman",
5037
"PodmanConfiguration",
51-
"StorageConnectionError",
52-
"StorageDownloadError",
53-
"StorageUploadError",
5438
]

fuzzforge-common/src/fuzzforge_common/storage/__init__.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

fuzzforge-common/src/fuzzforge_common/storage/configuration.py

Lines changed: 0 additions & 20 deletions
This file was deleted.

fuzzforge-common/src/fuzzforge_common/storage/exceptions.py

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)