Skip to content

Commit b858ed7

Browse files
authored
Move crates nested under nexus out of src/ (#1462)
1 parent 3370bf6 commit b858ed7

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ members = [
1111
"internal-dns",
1212
"internal-dns-client",
1313
"nexus",
14-
"nexus/src/authz/authz-macros",
15-
"nexus/src/db/db-macros",
14+
"nexus/authz-macros",
15+
"nexus/db-macros",
1616
"nexus/test-utils",
1717
"nexus/test-utils-macros",
1818
"nexus-client",
@@ -43,8 +43,8 @@ default-members = [
4343
"internal-dns",
4444
"internal-dns-client",
4545
"nexus",
46-
"nexus/src/authz/authz-macros",
47-
"nexus/src/db/db-macros",
46+
"nexus/authz-macros",
47+
"nexus/db-macros",
4848
"package",
4949
"rpaths",
5050
"sled-agent",

nexus/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ path = "../rpaths"
1111
anyhow = "1.0"
1212
async-bb8-diesel = { git = "https://github.com/oxidecomputer/async-bb8-diesel", rev = "ab1f49e0b3f95557aa96bf593282199fafeef4bd" }
1313
async-trait = "0.1.56"
14-
authz-macros = { path = "src/authz/authz-macros" }
1514
base64 = "0.13.0"
1615
bb8 = "0.8.0"
1716
clap = { version = "3.2", features = ["derive"] }
@@ -25,7 +24,6 @@ headers = "0.3.7"
2524
hex = "0.4.3"
2625
http = "0.2.7"
2726
hyper = "0.14"
28-
db-macros = { path = "src/db/db-macros" }
2927
internal-dns-client = { path = "../internal-dns-client" }
3028
ipnetwork = "0.18"
3129
lazy_static = "1.4.0"
@@ -60,6 +58,9 @@ toml = "0.5.9"
6058
tough = { version = "0.12", features = [ "http" ] }
6159
usdt = "0.3.1"
6260

61+
authz-macros = { path = "authz-macros" }
62+
db-macros = { path = "db-macros" }
63+
6364
[dependencies.api_identity]
6465
path = "../api_identity"
6566

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)