https://github.com/chewxy/dtdep
dtdep is a program that helps you discover data type dependencies within a single package. This allows you to break up packages that are too large by simply doing some graph cutting
https://github.com/chewxy/dtdep
Last synced: 3 months ago
JSON representation
dtdep is a program that helps you discover data type dependencies within a single package. This allows you to break up packages that are too large by simply doing some graph cutting
- Host: GitHub
- URL: https://github.com/chewxy/dtdep
- Owner: chewxy
- License: mit
- Created: 2021-01-01T20:41:54.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-12T00:46:19.000Z (over 4 years ago)
- Last Synced: 2025-01-31T14:47:17.902Z (5 months ago)
- Language: Go
- Size: 7.81 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dtdep
dtdep is a program that helps you discover data type dependencies within a single package. This allows you to break up packages that are too large by simply doing some graph cutting# To use:
```
dtdep ignored="_.error,fmt.State,hash.Hash,fmt.Stringer,hash.Hash32" -out=OUTFILE.dot PATH/TO/LIBRARY/TO/BE/ANALYSED
```Both `ignored` and `out` are optional.