Progress
This commit is contained in:
parent
118bb2ac66
commit
44638b8911
1 changed files with 15 additions and 12 deletions
|
|
@ -34,16 +34,19 @@ genrule(
|
||||||
rust_library(
|
rust_library(
|
||||||
name = "databuild",
|
name = "databuild",
|
||||||
srcs = [
|
srcs = [
|
||||||
"lib.rs",
|
|
||||||
"event_log/mod.rs",
|
"event_log/mod.rs",
|
||||||
"event_log/stdout.rs",
|
|
||||||
"event_log/sqlite.rs",
|
|
||||||
"event_log/postgres.rs",
|
"event_log/postgres.rs",
|
||||||
"service/mod.rs",
|
"event_log/sqlite.rs",
|
||||||
|
"event_log/stdout.rs",
|
||||||
|
"lib.rs",
|
||||||
"service/handlers.rs",
|
"service/handlers.rs",
|
||||||
|
"service/mod.rs",
|
||||||
":generate_databuild_rust",
|
":generate_databuild_rust",
|
||||||
],
|
],
|
||||||
edition = "2021",
|
edition = "2021",
|
||||||
|
proc_macro_deps = [
|
||||||
|
"@crates//:async-trait",
|
||||||
|
],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
deps = [
|
deps = [
|
||||||
"@crates//:aide",
|
"@crates//:aide",
|
||||||
|
|
@ -59,15 +62,15 @@ rust_library(
|
||||||
"@crates//:tokio",
|
"@crates//:tokio",
|
||||||
"@crates//:uuid",
|
"@crates//:uuid",
|
||||||
],
|
],
|
||||||
proc_macro_deps = [
|
|
||||||
"@crates//:async-trait",
|
|
||||||
],
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Build Graph Service binary
|
# Build Graph Service binary
|
||||||
rust_binary(
|
rust_binary(
|
||||||
name = "build_graph_service",
|
name = "build_graph_service",
|
||||||
srcs = ["service/main.rs"],
|
srcs = ["service/main.rs"],
|
||||||
|
data = [
|
||||||
|
"//databuild/dashboard:dist",
|
||||||
|
],
|
||||||
edition = "2021",
|
edition = "2021",
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
deps = [
|
deps = [
|
||||||
|
|
@ -75,16 +78,16 @@ rust_binary(
|
||||||
"@crates//:aide",
|
"@crates//:aide",
|
||||||
"@crates//:axum",
|
"@crates//:axum",
|
||||||
"@crates//:axum-jsonschema",
|
"@crates//:axum-jsonschema",
|
||||||
"@crates//:tokio",
|
"@crates//:clap",
|
||||||
"@crates//:tower",
|
|
||||||
"@crates//:tower-http",
|
|
||||||
"@crates//:hyper",
|
"@crates//:hyper",
|
||||||
|
"@crates//:log",
|
||||||
"@crates//:schemars",
|
"@crates//:schemars",
|
||||||
"@crates//:serde",
|
"@crates//:serde",
|
||||||
"@crates//:serde_json",
|
"@crates//:serde_json",
|
||||||
"@crates//:log",
|
|
||||||
"@crates//:simple_logger",
|
"@crates//:simple_logger",
|
||||||
"@crates//:clap",
|
"@crates//:tokio",
|
||||||
|
"@crates//:tower",
|
||||||
|
"@crates//:tower-http",
|
||||||
"@crates//:uuid",
|
"@crates//:uuid",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue