Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cgaebel/cargo-tags
https://github.com/cgaebel/cargo-tags
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/cgaebel/cargo-tags
- Owner: cgaebel
- License: mit
- Created: 2014-12-12T20:57:06.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-12T21:02:52.000Z (almost 10 years ago)
- Last Synced: 2024-05-01T19:35:14.422Z (7 months ago)
- Language: Rust
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
cargo-tags [![Build Status](https://travis-ci.org/cgaebel/cargo-tags.svg?branch=master)](https://travis-ci.org/cgaebel/cargo-tags)
=====================A tool to graph transitive dependencies for Rust projects using Cargo
Installation
------------
Installation should be familiar to Cargo users. In this project's
directory, build the project and then add the binary to your `PATH`.```sh
git clone [email protected]:cgaebel/cargo-tags.git
cargo build --release
export PATH=$PATH:$(pwd)/target/release
```Usage
-----
In a Rust project using Cargo, run the following commands (assuming
cargo-tags and exuberant ctags are on your PATH)```sh
cargo build # If you don't have a Cargo.lock file
cargo tags # cargo tags -e for emacs tags.
```A tags will will be generated in your working directory.