# Functions
Parse parses the given filename and content to extract dependencies and determine the ecosystem.
ParseCargoToml parses the content of a Cargo.toml file and returns a slice of dependencies.
ParseGoMod parses the content of a go.mod file and returns a slice of dependencies.
ParsePackageJSON parses package.json content and extracts dependencies.
ParsePomXml parses the content of a POM XML file and returns a slice of dependencies along with their group ID, artifact ID, and version.
ParseRequirementsTxt parses requirements.txt content and extracts dependencies.
# Type aliases
ParsingFunction is a function type that takes a string as input and returns a slice of dependencies and an error.