Skip to content

Commit

Permalink
Move crates nested under nexus out of src/ (#1462)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallagher authored Jul 19, 2022
1 parent 3370bf6 commit b858ed7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ members = [
"internal-dns",
"internal-dns-client",
"nexus",
"nexus/src/authz/authz-macros",
"nexus/src/db/db-macros",
"nexus/authz-macros",
"nexus/db-macros",
"nexus/test-utils",
"nexus/test-utils-macros",
"nexus-client",
Expand Down Expand Up @@ -43,8 +43,8 @@ default-members = [
"internal-dns",
"internal-dns-client",
"nexus",
"nexus/src/authz/authz-macros",
"nexus/src/db/db-macros",
"nexus/authz-macros",
"nexus/db-macros",
"package",
"rpaths",
"sled-agent",
Expand Down
5 changes: 3 additions & 2 deletions nexus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ path = "../rpaths"
anyhow = "1.0"
async-bb8-diesel = { git = "https://github.com/oxidecomputer/async-bb8-diesel", rev = "ab1f49e0b3f95557aa96bf593282199fafeef4bd" }
async-trait = "0.1.56"
authz-macros = { path = "src/authz/authz-macros" }
base64 = "0.13.0"
bb8 = "0.8.0"
clap = { version = "3.2", features = ["derive"] }
Expand All @@ -25,7 +24,6 @@ headers = "0.3.7"
hex = "0.4.3"
http = "0.2.7"
hyper = "0.14"
db-macros = { path = "src/db/db-macros" }
internal-dns-client = { path = "../internal-dns-client" }
ipnetwork = "0.18"
lazy_static = "1.4.0"
Expand Down Expand Up @@ -60,6 +58,9 @@ toml = "0.5.9"
tough = { version = "0.12", features = [ "http" ] }
usdt = "0.3.1"

authz-macros = { path = "authz-macros" }
db-macros = { path = "db-macros" }

[dependencies.api_identity]
path = "../api_identity"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b858ed7

Please sign in to comment.