Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve repository structure #506

Merged
merged 13 commits into from
Aug 2, 2024
Prev Previous commit
Next Next commit
Update rust path
Signed-off-by: RealHinome <[email protected]>
  • Loading branch information
RealHinome committed Aug 2, 2024
commit b57a3f1a666393fdc530b50416c380c67cb4479c
16 changes: 8 additions & 8 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module(
name = "autha",
version = "3.0",
version = "3.1",
)

bazel_dep(name = "platforms", version = "0.0.8")
Expand Down Expand Up @@ -38,14 +38,14 @@ crate = use_extension(
)
crate.from_cargo(
name = "crate_index",
cargo_lockfile = "//:Cargo.lock",
cargo_lockfile = "//api:Cargo.lock",
manifests = [
"//:Cargo.toml",
"//autha-limits:Cargo.toml",
"//autha:Cargo.toml",
"//crypto:Cargo.toml",
"//db:Cargo.toml",
"//image_processor:Cargo.toml",
"//api:Cargo.toml",
"//api/autha-limits:Cargo.toml",
"//api/autha:Cargo.toml",
"//api/crypto:Cargo.toml",
"//api/db:Cargo.toml",
"//api/image_processor:Cargo.toml",
],
)
use_repo(crate, "crate_index")
Expand Down
2 changes: 1 addition & 1 deletion api/autha/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@ oci_push(
repository = "ghcr.io/gravitalia/autha",
remote_tags = [
"latest",
"3.0.0",
"3.1.0",
]
)
Loading