mirror of
https://github.com/facebook/sapling.git
synced 2024-12-24 05:21:49 +03:00
build: rename third-party rust fbthrift crate
Summary: Our internal build infra creates a workspace and workspaces don't like it when two crates have the same name. Eden scm had third-party rust crates that were simple redirects to the internal location, but had the same name. This caused breakages once these crates became part of the edenfs open source build. Let's rename them to avoid this issue. Reviewed By: kulshrax Differential Revision: D23252539 fbshipit-source-id: 9ff2fa160a19c6bc54e015c71f9da7044ce659a7
This commit is contained in:
parent
7cfbf99de4
commit
201f63be32
@ -15,7 +15,7 @@ tokio-core = "0.1"
|
||||
tokio-uds = "0.1"
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
fbthrift_socket = { path = "../third-party/rust/fbthrift_socket" }
|
||||
fbthrift_socket = { package = "fbthrift_socket_eden_oss", path = "../third-party/rust/fbthrift_socket" }
|
||||
|
||||
[dev-dependencies]
|
||||
telemetry = { path = "../../../../scm/telemetry/telemetry" }
|
||||
|
@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "fbthrift"
|
||||
name = "fbthrift_eden_oss"
|
||||
edition = "2018"
|
||||
version = "0.0.0"
|
||||
include = ["lib.rs"]
|
||||
|
@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "fbthrift_socket"
|
||||
name = "fbthrift_socket_eden_oss"
|
||||
edition = "2018"
|
||||
version = "0.0.0"
|
||||
include = ["lib.rs"]
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
async-trait = "0.1"
|
||||
fbthrift = { path = "../third-party/rust/fbthrift" }
|
||||
fbthrift = { package = "fbthrift_eden_oss", path = "../third-party/rust/fbthrift" }
|
||||
futures = "0.3"
|
||||
thiserror = "1"
|
||||
|
||||
|
@ -90,7 +90,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
async-trait = "0.1"
|
||||
fbthrift = {{ path = "../../third-party/rust/fbthrift" }}
|
||||
fbthrift = {{ package = "fbthrift_eden_oss", path = "../../third-party/rust/fbthrift" }}
|
||||
futures = "0.3"
|
||||
serde = {{ version = "1", features = ["derive"] }}
|
||||
serde_derive = "1.0"
|
||||
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
async-trait = "0.1"
|
||||
fbthrift = { path = "../../third-party/rust/fbthrift" }
|
||||
fbthrift = { package = "fbthrift_eden_oss", path = "../../third-party/rust/fbthrift" }
|
||||
futures = "0.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_derive = "1.0"
|
||||
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
async-trait = "0.1"
|
||||
fbthrift = { path = "../../third-party/rust/fbthrift" }
|
||||
fbthrift = { package = "fbthrift_eden_oss", path = "../../third-party/rust/fbthrift" }
|
||||
futures = "0.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_derive = "1.0"
|
||||
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
async-trait = "0.1"
|
||||
fbthrift = { path = "../../third-party/rust/fbthrift" }
|
||||
fbthrift = { package = "fbthrift_eden_oss", path = "../../third-party/rust/fbthrift" }
|
||||
futures = "0.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_derive = "1.0"
|
||||
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
async-trait = "0.1"
|
||||
fbthrift = { path = "../../third-party/rust/fbthrift" }
|
||||
fbthrift = { package = "fbthrift_eden_oss", path = "../../third-party/rust/fbthrift" }
|
||||
futures = "0.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_derive = "1.0"
|
||||
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
async-trait = "0.1"
|
||||
fbthrift = { path = "../../third-party/rust/fbthrift" }
|
||||
fbthrift = { package = "fbthrift_eden_oss", path = "../../third-party/rust/fbthrift" }
|
||||
futures = "0.3"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_derive = "1.0"
|
||||
|
Loading…
Reference in New Issue
Block a user