Sha256: a5c02c380675dbb2095332aa7c94c9b1390ddbdbe1ecb200e22857a2c1b3e09a

Contents?: true

Size: 1.75 KB

Versions: 6

Compression:

Stored size: 1.75 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::Spdx)
      add_multi_parser(Bibliothecary::MultiParsers::DependenciesCSV)

      def self.parse_manifest(file_contents, options: {}) # rubocop:disable Lint/UnusedMethodArgument
        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: {}) # rubocop:disable Lint/UnusedMethodArgument
        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

6 entries across 6 versions & 1 rubygems

Version Path
bibliothecary-9.1.0 lib/bibliothecary/parsers/cargo.rb
bibliothecary-9.0.0 lib/bibliothecary/parsers/cargo.rb
bibliothecary-8.8.1 lib/bibliothecary/parsers/cargo.rb
bibliothecary-8.7.7 lib/bibliothecary/parsers/cargo.rb
bibliothecary-8.7.6 lib/bibliothecary/parsers/cargo.rb
bibliothecary-8.7.5 lib/bibliothecary/parsers/cargo.rb