struct-frame 0.0.16__tar.gz → 0.0.17__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 struct-frame might be problematic. Click here for more details.

Files changed (37) hide show
  1. {struct_frame-0.0.16 → struct_frame-0.0.17}/PKG-INFO +1 -1
  2. {struct_frame-0.0.16 → struct_frame-0.0.17}/pyproject.toml +1 -1
  3. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/generate.py +0 -2
  4. {struct_frame-0.0.16 → struct_frame-0.0.17}/.gitignore +0 -0
  5. {struct_frame-0.0.16 → struct_frame-0.0.17}/LICENSE +0 -0
  6. {struct_frame-0.0.16 → struct_frame-0.0.17}/README.md +0 -0
  7. {struct_frame-0.0.16 → struct_frame-0.0.17}/biostream.proto +0 -0
  8. {struct_frame-0.0.16 → struct_frame-0.0.17}/index.ts +0 -0
  9. {struct_frame-0.0.16 → struct_frame-0.0.17}/main.c +0 -0
  10. {struct_frame-0.0.16 → struct_frame-0.0.17}/myl_vehicle.proto +0 -0
  11. {struct_frame-0.0.16 → struct_frame-0.0.17}/package-lock.json +0 -0
  12. {struct_frame-0.0.16 → struct_frame-0.0.17}/package.json +0 -0
  13. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/main.py +0 -0
  14. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/__init__.py +0 -0
  15. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/__main__.py +0 -0
  16. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/base.py +0 -0
  17. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/boilerplate/c/struct_frame.h +0 -0
  18. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/boilerplate/c/struct_frame_gen.h +0 -0
  19. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/boilerplate/c/struct_frame_parser.h +0 -0
  20. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/boilerplate/c/struct_frame_types.h +0 -0
  21. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/boilerplate/ts/struct_frame.ts +0 -0
  22. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/boilerplate/ts/struct_frame_gen.ts +0 -0
  23. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/boilerplate/ts/struct_frame_parser.ts +0 -0
  24. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/boilerplate/ts/struct_frame_types.ts +0 -0
  25. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/c_gen.py +0 -0
  26. {struct_frame-0.0.16 → struct_frame-0.0.17}/src/struct_frame/ts_gen.py +0 -0
  27. {struct_frame-0.0.16 → struct_frame-0.0.17}/tester/biostream.sf.h +0 -0
  28. {struct_frame-0.0.16 → struct_frame-0.0.17}/tester/struct_frame.h +0 -0
  29. {struct_frame-0.0.16 → struct_frame-0.0.17}/tester/struct_frame_gen.h +0 -0
  30. {struct_frame-0.0.16 → struct_frame-0.0.17}/tester/struct_frame_parser.h +0 -0
  31. {struct_frame-0.0.16 → struct_frame-0.0.17}/tester/struct_frame_types.h +0 -0
  32. {struct_frame-0.0.16 → struct_frame-0.0.17}/testerts/biostream.sf.ts +0 -0
  33. {struct_frame-0.0.16 → struct_frame-0.0.17}/testerts/struct_frame.ts +0 -0
  34. {struct_frame-0.0.16 → struct_frame-0.0.17}/testerts/struct_frame_gen.ts +0 -0
  35. {struct_frame-0.0.16 → struct_frame-0.0.17}/testerts/struct_frame_parser.ts +0 -0
  36. {struct_frame-0.0.16 → struct_frame-0.0.17}/testerts/struct_frame_types.ts +0 -0
  37. {struct_frame-0.0.16 → struct_frame-0.0.17}/tsconfig.json +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: struct-frame
3
- Version: 0.0.16
3
+ Version: 0.0.17
4
4
  Summary: A framework for serializing data with headers
5
5
  Project-URL: Homepage, https://github.com/mylonics/struct-frame
6
6
  Project-URL: Issues, https://github.com/mylonics/struct-frame/issues
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "struct-frame"
7
- version = "0.0.16"
7
+ version = "0.0.17"
8
8
  authors = [
9
9
  { name="Rijesh Augustine", email="rijesh@mylonics.com" },
10
10
  ]
@@ -338,8 +338,6 @@ def main():
338
338
  print(
339
339
  f'Recursion Error. Messages most likely have a cyclical dependancy. Check Message: {recErrCurrentMessage} and Field: {recErrCurrentField}')
340
340
 
341
- print(args.c_path)
342
- print(args.ts_path)
343
341
  files = generateCFileStrings(args.c_path[0])
344
342
  files.update(generateTsFileStrings(args.ts_path[0]))
345
343
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes