Sha256: 4fd835c925a655ba9269782be82b3fa13f1e17525b716f517c48ed2c3d091663
Contents?: true
Size: 1.6 KB
Versions: 18
Compression:
Stored size: 1.6 KB
Contents
module Bibliothecary module Parsers class Cargo include Bibliothecary::Analyser def self.mapping { match_filename("Cargo.toml") => { kind: 'manifest', parser: :parse_manifest }, match_filename("Cargo.lock") => { kind: 'lockfile', parser: :parse_lockfile } } end add_multi_parser(Bibliothecary::MultiParsers::CycloneDX) add_multi_parser(Bibliothecary::MultiParsers::DependenciesCSV) def self.parse_manifest(file_contents, options: {}) manifest = Tomlrb.parse(file_contents) parsed_dependencies = [] manifest.fetch_values('dependencies', 'dev-dependencies').each_with_index do |deps, index| parsed_dependencies << deps.map do |name, requirement| if requirement.respond_to?(:fetch) requirement = requirement['version'] or next end { name: name, requirement: requirement, type: index.zero? ? 'runtime' : 'development' } end end parsed_dependencies.flatten.compact end def self.parse_lockfile(file_contents, options: {}) manifest = Tomlrb.parse(file_contents) manifest.fetch('package',[]).map do |dependency| next if not dependency['source'] or not dependency['source'].start_with?('registry+') { name: dependency['name'], requirement: dependency['version'], type: 'runtime' } end .compact end end end end
Version data entries
18 entries across 18 versions & 1 rubygems