summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Chen <brianc118@fb.com>2022-09-09 06:05:00 -0700
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2022-09-09 06:05:00 -0700
commit6030ba5d0ce05efeed30b09cd143a100366c2c95 (patch)
treef1ccb4c427bff2ae5417969e936716b7f2e1ac56
parent73d87284ee95f0d785cd2032a71a36f7d4db3cf6 (diff)
Rename btrfs crate to below-btrfs
Summary: btrfs crate already exists on crates.io Let's prefix with below- like our other crates. Reviewed By: lnyng Differential Revision: D39351644 fbshipit-source-id: 1831560089de52d29d4271fc99adcea3d027997c
-rw-r--r--below/btrfs/Cargo.toml2
-rw-r--r--below/config/Cargo.toml2
-rw-r--r--below/model/Cargo.toml2
3 files changed, 3 insertions, 3 deletions
diff --git a/below/btrfs/Cargo.toml b/below/btrfs/Cargo.toml
index 442540d4..c547b472 100644
--- a/below/btrfs/Cargo.toml
+++ b/below/btrfs/Cargo.toml
@@ -1,7 +1,7 @@
# @generated by autocargo
[package]
-name = "btrfs"
+name = "below-btrfs"
version = "0.6.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
diff --git a/below/config/Cargo.toml b/below/config/Cargo.toml
index 6db6f92a..f10ed835 100644
--- a/below/config/Cargo.toml
+++ b/below/config/Cargo.toml
@@ -11,7 +11,7 @@ license = "Apache-2.0"
[dependencies]
anyhow = "1.0.56"
-btrfs = { version = "0.6.0", path = "../btrfs" }
+btrfs = { package = "below-btrfs", version = "0.6.0", path = "../btrfs" }
cgroupfs = { version = "0.6.0", path = "../cgroupfs" }
once_cell = "1.12"
serde = { version = "1.0.136", features = ["derive", "rc"] }
diff --git a/below/model/Cargo.toml b/below/model/Cargo.toml
index 49ed00c2..bc7e29b1 100644
--- a/below/model/Cargo.toml
+++ b/below/model/Cargo.toml
@@ -13,7 +13,7 @@ license = "Apache-2.0"
anyhow = "1.0.56"
async-trait = "0.1.56"
below_derive = { version = "0.6.0", path = "../below_derive" }
-btrfs = { version = "0.6.0", path = "../btrfs" }
+btrfs = { package = "below-btrfs", version = "0.6.0", path = "../btrfs" }
cgroupfs = { version = "0.6.0", path = "../cgroupfs" }
common = { package = "below-common", version = "0.6.0", path = "../common" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }