Sha256: 012e7677bed2ed3c056768cf908b6bbfa704fa24f119c6093822a5c9d25495c0
Contents?: true
Size: 1.39 KB
Versions: 11
Compression:
Stored size: 1.39 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) manifest.fetch('dependencies', []).map do |name, requirement| if requirement.respond_to?(:fetch) requirement = requirement['version'] or next end { name: name, requirement: requirement, type: 'runtime' } end .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
11 entries across 11 versions & 1 rubygems