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

Allows building registry #126

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Allows building registry.
This allows for compiling the registry:
- Adds tonic dependency
- Adds prost dependency
- Adds `registry` to crate workspace
  • Loading branch information
xfbs committed Oct 12, 2023
commit f4f6851c555ad1ab473e399769ce8330cc3c4eb0
236 changes: 236 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,6 @@ predicates = "3.0"
pretty_assertions = "1.4"
ring = "0.16.20"
hex = "0.4.3"

[workspace]
members = [".", "registry"]
xfbs marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 2 additions & 0 deletions registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ edition = "2021"

[dependencies]
buffrs = { path = "../" }
prost = "0.12.1"
tonic = "0.10.2"

[build-dependencies]
buffrs = { path = "../" }
2 changes: 2 additions & 0 deletions registry/Proto.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version = 1
packages = []
2 changes: 1 addition & 1 deletion registry/src/proto.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// (c) Copyright 2023 Helsing GmbH. All rights reserved.

buffrs::include!();
::buffrs::include!();
xfbs marked this conversation as resolved.
Show resolved Hide resolved