Skip to content

Commit

Permalink
proxy: move to crates directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill authored and bors-libra committed Nov 19, 2021
1 parent 320986d commit 4992a8c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ members = [
"common/metrics-core",
"common/num-variants",
"common/proptest-helpers",
"common/proxy",
"common/rate-limiter",
"common/retrier",
"common/short-hex-str",
Expand All @@ -44,6 +43,7 @@ members = [
"crates/diem-crypto-derive",
"crates/diem-faucet",
"crates/diem-json-rpc-client",
"crates/proxy",
"crates/swiss-knife",
"crates/transaction-emitter",
"devtools/x",
Expand Down
2 changes: 1 addition & 1 deletion crates/diem-client/src/proxy.rs
2 changes: 1 addition & 1 deletion common/proxy/Cargo.toml → crates/proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ edition = "2018"
[dependencies]
ipnet = "2.3"

diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
File renamed without changes.
2 changes: 1 addition & 1 deletion network/netcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ url = { version = "2.2.1" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-types = { path = "../../types" }
memsocket = { path = "../memsocket", optional = true }
proxy = { path = "../../common/proxy" }
proxy = { path = "../../crates/proxy" }

[dev-dependencies]
diem-logger = { path = "../../common/logger" }
Expand Down
2 changes: 1 addition & 1 deletion secure/storage/github/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ thiserror = "1.0.24"
ureq = { version = "1.5.4", features = ["json", "native-tls"], default-features = false }

diem-workspace-hack = { path = "../../../common/workspace-hack" }
proxy = { path = "../../../common/proxy" }
proxy = { path = "../../../crates/proxy" }

[dev-dependencies]
base64 = "0.13.0"

0 comments on commit 4992a8c

Please sign in to comment.