All Projects → rust-lang → Cargo

rust-lang / Cargo

Licence: other
The Rust package manager

Programming Languages

rust
11053 projects
Roff
2310 projects

Projects that are alternatives of or similar to Cargo

Dub
Package and build management system for D
Stars: ✭ 545 (-92.84%)
Mutual labels:  package-manager
Orogene
A next-generation platform and package manager for Node.js-compatible and frontend JavaScript projects!
Stars: ✭ 695 (-90.87%)
Mutual labels:  package-manager
Basher
A package manager for shell scripts.
Stars: ✭ 768 (-89.91%)
Mutual labels:  package-manager
Spago
🍝 PureScript package manager and build tool powered by Dhall and package-sets
Stars: ✭ 568 (-92.54%)
Mutual labels:  package-manager
Niv
Easy dependency management for Nix projects
Stars: ✭ 669 (-91.21%)
Mutual labels:  package-manager
Brew
🍺 The missing package manager for macOS (or Linux)
Stars: ✭ 30,318 (+298.14%)
Mutual labels:  package-manager
Beak
A command line interface for your Swift scripts
Stars: ✭ 537 (-92.95%)
Mutual labels:  package-manager
Buckaroo
The decentralized package manager for C++ and friends 🏝️
Stars: ✭ 820 (-89.23%)
Mutual labels:  package-manager
Modern Cpp Template
A template for modern C++ projects using CMake, Clang-Format, CI, unit testing and more, with support for downstream inclusion.
Stars: ✭ 690 (-90.94%)
Mutual labels:  package-manager
Rome
Carthage cache for S3, Minio, Ceph, Google Storage, Artifactory and many others
Stars: ✭ 724 (-90.49%)
Mutual labels:  package-manager
Fusesoc
Package manager and build abstraction tool for FPGA/ASIC development
Stars: ✭ 607 (-92.03%)
Mutual labels:  package-manager
Zebra
🦓 A Useful Package Manager for iOS
Stars: ✭ 667 (-91.24%)
Mutual labels:  package-manager
Trizen
Lightweight AUR Package Manager
Stars: ✭ 696 (-90.86%)
Mutual labels:  package-manager
Cpm.cmake
📦 CMake's missing package manager. A small CMake script for setup-free, cross-platform, reproducible dependency management.
Stars: ✭ 560 (-92.65%)
Mutual labels:  package-manager
Antigen
The plugin manager for zsh.
Stars: ✭ 6,843 (-10.14%)
Mutual labels:  package-manager
Erlang.mk
A build tool for Erlang that just works.
Stars: ✭ 538 (-92.93%)
Mutual labels:  package-manager
Composer
Dependency Manager for PHP
Stars: ✭ 25,994 (+241.35%)
Mutual labels:  package-manager
Xonotic Map Manager
A command line package manager for Xonotic community maps
Stars: ✭ 5 (-99.93%)
Mutual labels:  package-manager
Nimble
Package manager for the Nim programming language.
Stars: ✭ 815 (-89.3%)
Mutual labels:  package-manager
Pacapt
An ArchLinux's pacman-like wrapper for many package managers
Stars: ✭ 709 (-90.69%)
Mutual labels:  package-manager

Cargo

Cargo downloads your Rust project’s dependencies and compiles your project.

Learn more at https://doc.rust-lang.org/cargo/

Code Status

Build Status

Code documentation: https://docs.rs/cargo/

Installing Cargo

Cargo is distributed by default with Rust, so if you've got rustc installed locally you probably also have cargo installed locally.

Compiling from Source

Cargo requires the following tools and packages to build:

  • git
  • curl (on Unix)
  • pkg-config (on Unix, used to figure out the libssl headers/libraries)
  • OpenSSL headers (only for Unix, this is the libssl-dev package on ubuntu)
  • cargo and rustc

First, you'll want to check out this repository

git clone https://github.com/rust-lang/cargo
cd cargo

With cargo already installed, you can simply run:

cargo build --release

Adding new subcommands to Cargo

Cargo is designed to be extensible with new subcommands without having to modify Cargo itself. See the Wiki page for more details and a list of known community-developed subcommands.

Releases

Cargo releases coincide with Rust releases. High level release notes are available as part of Rust's release notes. Detailed release notes are available in this repo at CHANGELOG.md.

Reporting issues

Found a bug? We'd love to know about it!

Please report all issues on the GitHub issue tracker.

Contributing

See the Cargo Contributor Guide for a complete introduction to contributing to Cargo.

License

Cargo is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

Third party software

This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (https://www.openssl.org/).

In binary form, this product includes software that is licensed under the terms of the GNU General Public License, version 2, with a linking exception, which can be obtained from the upstream repository.

See LICENSE-THIRD-PARTY for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].