Skip to content
Snippets Groups Projects
Commit 0fe12b81 authored by Michael Hauspie's avatar Michael Hauspie
Browse files

Change crate name to cargo-pip

parent 5dbf5034
No related branches found
No related tags found
1 merge request!1Add a new `link` subcommand
...@@ -139,6 +139,17 @@ version = "1.5.0" ...@@ -139,6 +139,17 @@ version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
[[package]]
name = "cargo-pip"
version = "0.1.0"
dependencies = [
"anyhow",
"cargo-scaffold",
"clap",
"elf",
"thiserror",
]
[[package]] [[package]]
name = "cargo-scaffold" name = "cargo-scaffold"
version = "0.12.0" version = "0.12.0"
...@@ -761,17 +772,6 @@ dependencies = [ ...@@ -761,17 +772,6 @@ dependencies = [
"sha2", "sha2",
] ]
[[package]]
name = "pip-tool"
version = "0.1.0"
dependencies = [
"anyhow",
"cargo-scaffold",
"clap",
"elf",
"thiserror",
]
[[package]] [[package]]
name = "pkg-config" name = "pkg-config"
version = "0.3.30" version = "0.3.30"
......
[package] [package]
name = "pip-tool" name = "cargo-pip"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
authors = ["Michaël Hauspie <michael.hauspie@univ-lille.fr>", "Damien Amara <damien.amara@univ-lille.fr", "Gilles Grimaud <gilles.grimaud@univ-lille.fr>"] authors = ["Michaël Hauspie <michael.hauspie@univ-lille.fr>", "Damien Amara <damien.amara@univ-lille.fr", "Gilles Grimaud <gilles.grimaud@univ-lille.fr>"]
...@@ -12,7 +12,7 @@ readme = "README.md" ...@@ -12,7 +12,7 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]] [[bin]]
path = "src/main.rs" path = "src/main.rs"
name = "pip-tool" name = "cargo-pip"
[dependencies] [dependencies]
......
#![doc = include_str!("../README.md")] #![doc = include_str!("../README.md")]
use clap::Parser; use clap::Parser;
use pip_tool::{Opts,execute}; use cargo_pip::{Opts,execute};
use anyhow::Result; use anyhow::Result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment