awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjektÜber unsHow we rankPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
awesome-repositories.comBlog
Kategorien

3 Repos

Awesome GitHub RepositoriesDependency Declarations

Defining specific language-runtime version and module requirements within package recipes.

Distinct from Python Package Managers: Distinct from Python Package Managers by focusing on the declaration of dependencies within a recipe rather than the manager's operation.

Explore 3 awesome GitHub repositories matching development tools & productivity · Dependency Declarations. Refine with filters or upvote what's useful.

Awesome Dependency Declarations GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • homebrew/homebrew-coreAvatar von Homebrew

    Homebrew/homebrew-core

    15,383Auf GitHub ansehen↗

    This project is a Ruby-based package definition repository that functions as a cross-platform package manager and software dependency resolver for macOS and Linux. It provides a centralized system for installing, updating, and managing software through a Git-based distribution model. The system distinguishes itself through a binary package distribution network that produces pre-compiled bottles to avoid local compilation from source. It utilizes a Ruby-based domain specific language to define installation recipes and employs a distributed version control architecture to synchronize these defi

    Enables reproducible installations by specifying required Python versions and module resources.

    Rubycoreformulaehacktoberfest
    Auf GitHub ansehen↗15,383
  • masterminds/glideAvatar von Masterminds

    Masterminds/glide

    8,095Auf GitHub ansehen↗

    Glide is a Go dependency management tool that fetches, pins, and vendors external packages to enable reproducible builds across environments. It stores project-specific copies of Go packages in a vendor directory, isolating dependencies per project to avoid version conflicts, and supports fetching packages from Git, Mercurial, Bazaar, and Subversion repositories. The tool resolves dependency versions using semantic versioning ranges and operators, and generates a lock file that records exact commit IDs for all transitive dependencies. Glide distinguishes itself with an interactive version wiz

    Declares external dependencies in a glide.yaml file, specifying import paths and optional version constraints.

    Gogogolangpackage-management
    Auf GitHub ansehen↗8,095
  • roc-lang/rocAvatar von roc-lang

    roc-lang/roc

    5,723Auf GitHub ansehen↗

    Roc is a statically typed, functional programming language built around immutable-by-default semantics, exhaustive pattern matching on tag unions, and a type system that combines optional explicit annotations with full compile-time type inference. Its core identity centers on correctness and expressiveness, using tagged unions for error handling with a question-mark operator for early error propagation, and a trailing-bang naming convention that makes side-effect boundaries syntactically visible at every call site. The language distinguishes itself through a platform-based I/O abstraction tha

    Declares platforms and package dependencies in a header to provide all I/O primitives for executables.

    Zig
    Auf GitHub ansehen↗5,723
  1. Home
  2. Development Tools & Productivity
  3. Dependency Managers
  4. Python Package Managers
  5. Dependency Declarations

Unter-Tags erkunden

  • Platform and Package DeclarationsDeclaring a platform and optional package dependencies in a header to provide all I/O primitives for an executable. **Distinct from Dependency Declarations:** Distinct from Dependency Declarations: focuses on declaring a platform that provides I/O primitives, not just listing package dependencies.
  • TestLists packages required only during testing, separate from the main import list. **Distinct from Dependency Declarations:** Distinct from general Dependency Declarations: focuses on test-only dependencies, not all project dependencies.