load("@crates//:defs.bzl", "aliases", "all_crate_deps")
load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_library", "rust_proc_macro", "rust_test")
filegroup(
name = "cargo_manifest",
srcs = ["Cargo.toml"],
visibility = ["//visibility:public"],
)
filegroup(
name = "package_runfiles",
srcs = glob(["Cargo.toml", "**/*"], exclude = ["BUILD", "BUILD.bazel"], allow_empty = True),
visibility = ["//visibility:public"],
)
rust_library(
name = "meerkat_mobkit",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "meerkat_mobkit",
crate_root = "src/lib.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_test(
name = "meerkat_mobkit_unit_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "meerkat_mobkit",
crate_root = "src/lib.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
"unit",
],
size = "small",
data = [
":package_runfiles",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_binary(
name = "baseline_check_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "baseline_check",
crate_root = "src/bin/baseline_check.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "baseline_check",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_binary(
name = "distiller_eval_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "distiller_eval",
crate_root = "src/bin/distiller_eval.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "distiller-eval",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_binary(
name = "governance_check_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "governance_check",
crate_root = "src/bin/governance_check.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "governance_check",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_binary(
name = "hygienist_eval_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "hygienist_eval",
crate_root = "src/bin/hygienist_eval.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "hygienist-eval",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_binary(
name = "mcp_fixture_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "mcp_fixture",
crate_root = "src/bin/mcp_fixture.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mcp_fixture",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_binary(
name = "mobkit_flow_editor_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "mobkit_flow_editor",
crate_root = "src/bin/mobkit_flow_editor.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mobkit_flow_editor",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_binary(
name = "mobkit_gateway_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "mobkit_gateway",
crate_root = "src/bin/mobkit_gateway.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mobkit_gateway",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_binary(
name = "rpc_gateway_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "rpc_gateway",
crate_root = "src/bin/rpc_gateway.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "rpc_gateway",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_binary(
name = "selector_eval_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "selector_eval",
crate_root = "src/bin/selector_eval.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "selector-eval",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_binary(
name = "steward_eval_bin",
aliases = aliases(package_name = "meerkat-mobkit"),
crate_name = "steward_eval",
crate_root = "src/bin/steward_eval.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
],
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "steward-eval",
"CARGO_MANIFEST_DIR": "meerkat-mobkit",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
),
)
rust_test(
name = "access_control_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "access_control",
crate_root = "tests/access_control.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/access_control.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "access_control",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "agent_lifecycle_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "agent_lifecycle",
crate_root = "tests/agent_lifecycle.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/agent_lifecycle.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "agent_lifecycle",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:workspace_cargo_manifests",
"//:workspace_metadata",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "bigquery_adapter_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "bigquery_adapter",
crate_root = "tests/bigquery_adapter.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/bigquery_adapter.rs",
"tests/support/bigquery_http_mock.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "bigquery_adapter",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "bigquery_gc_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "bigquery_gc",
crate_root = "tests/bigquery_gc.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/bigquery_gc.rs",
"tests/support/bigquery_http_mock.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "bigquery_gc",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "builder_api_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "builder_api",
crate_root = "tests/builder_api.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/builder_api.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "builder_api",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "classic_agent_memory_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "classic_agent_memory",
crate_root = "tests/classic_agent_memory.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/classic_agent_memory.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "classic_agent_memory",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "console_customization_fixtures_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "console_customization_fixtures",
crate_root = "tests/console_customization_fixtures.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/console_customization_fixtures.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "console_customization_fixtures",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fixture",
],
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "console_experience_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "console_experience",
crate_root = "tests/console_experience.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/console_experience.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "console_experience",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "console_route_auth_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "console_route_auth",
crate_root = "tests/console_route_auth.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/console_route_auth.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "console_route_auth",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "core_types_and_rpc_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "core_types_and_rpc",
crate_root = "tests/core_types_and_rpc.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/core_types_and_rpc.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "core_types_and_rpc",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "cross_mob_signed_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "cross_mob_signed",
crate_root = "tests/cross_mob_signed.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/cross_mob_signed.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "cross_mob_signed",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "cross_mob_tcp_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "cross_mob_tcp",
crate_root = "tests/cross_mob_tcp.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/cross_mob_tcp.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "cross_mob_tcp",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "cross_mob_uds_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "cross_mob_uds",
crate_root = "tests/cross_mob_uds.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/cross_mob_uds.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "cross_mob_uds",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "discovery_bootstrap_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "discovery_bootstrap",
crate_root = "tests/discovery_bootstrap.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/discovery_bootstrap.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "discovery_bootstrap",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "distiller_eval_harness_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "distiller_eval_harness",
crate_root = "tests/distiller_eval_harness.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/distiller_eval_harness.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "distiller_eval_harness",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "e2e_sdk_wire_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "e2e_sdk_wire",
crate_root = "tests/e2e_sdk_wire.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/e2e_sdk_wire.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "e2e_sdk_wire",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"e2e",
],
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "e2e_target_contracts_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "e2e_target_contracts",
crate_root = "tests/e2e_target_contracts.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/e2e_target_contracts.rs",
"tests/support/bigquery_http_mock.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "e2e_target_contracts",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"e2e",
],
data = [
":package_runfiles",
"//:workspace_cargo_manifests",
"//:workspace_metadata",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "event_log_recovery_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "event_log_recovery",
crate_root = "tests/event_log_recovery.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/event_log_recovery.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "event_log_recovery",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "external_boundary_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "external_boundary",
crate_root = "tests/external_boundary.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/external_boundary.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "external_boundary",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "gateway_external_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "gateway_external",
crate_root = "tests/gateway_external.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/gateway_external.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "gateway_external",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "gateway_memory_config_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "gateway_memory_config",
crate_root = "tests/gateway_memory_config.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/gateway_memory_config.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "gateway_memory_config",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "gating_policy_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "gating_policy",
crate_root = "tests/gating_policy.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/gating_policy.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "gating_policy",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:workspace_cargo_manifests",
"//:workspace_metadata",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "governance_contracts_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "governance_contracts",
crate_root = "tests/governance_contracts.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/governance_contracts.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "governance_contracts",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "hooks_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "hooks",
crate_root = "tests/hooks.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/hooks.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "hooks",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "http_router_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "http_router",
crate_root = "tests/http_router.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/http_router.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "http_router",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "hygienist_eval_harness_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "hygienist_eval_harness",
crate_root = "tests/hygienist_eval_harness.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/hygienist_eval_harness.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "hygienist_eval_harness",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_boundary_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_boundary",
crate_root = "tests/identity_first_boundary.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_boundary.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_boundary",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_builder_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_builder",
crate_root = "tests/identity_first_builder.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_builder.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_builder",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_choke_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_choke",
crate_root = "tests/identity_first_choke.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_choke.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_choke",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_cold_restart_continuity_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_cold_restart_continuity",
crate_root = "tests/identity_first_cold_restart_continuity.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_cold_restart_continuity.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_cold_restart_continuity",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_contracts_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_contracts",
crate_root = "tests/identity_first_contracts.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_contracts.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_contracts",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_e2e_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_e2e",
crate_root = "tests/identity_first_e2e.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_e2e.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_e2e",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"e2e",
],
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_kitchen_sink_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_kitchen_sink",
crate_root = "tests/identity_first_kitchen_sink.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_kitchen_sink.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_kitchen_sink",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_ob3_smoke_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_ob3_smoke",
crate_root = "tests/identity_first_ob3_smoke.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_ob3_smoke.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_ob3_smoke",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_respawn_continuity_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_respawn_continuity",
crate_root = "tests/identity_first_respawn_continuity.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_respawn_continuity.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_respawn_continuity",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_runtime_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_runtime",
crate_root = "tests/identity_first_runtime.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_runtime.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_runtime",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "identity_first_types_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "identity_first_types",
crate_root = "tests/identity_first_types.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/identity_first_types.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "identity_first_types",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "incident_command_center_pack_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "incident_command_center_pack",
crate_root = "tests/incident_command_center_pack.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/incident_command_center_pack.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "incident_command_center_pack",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "jwks_cache_and_auth_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "jwks_cache_and_auth",
crate_root = "tests/jwks_cache_and_auth.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/jwks_cache_and_auth.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "jwks_cache_and_auth",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "jwt_oidc_auth_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "jwt_oidc_auth",
crate_root = "tests/jwt_oidc_auth.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/jwt_oidc_auth.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "jwt_oidc_auth",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "jwt_rsa_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "jwt_rsa",
crate_root = "tests/jwt_rsa.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/jwt_rsa.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "jwt_rsa",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "legacy_session_resume_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "legacy_session_resume",
crate_root = "tests/legacy_session_resume.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/legacy_session_resume.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "legacy_session_resume",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "list_flows_run_flow_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "list_flows_run_flow",
crate_root = "tests/list_flows_run_flow.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/list_flows_run_flow.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "list_flows_run_flow",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "list_runs_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "list_runs",
crate_root = "tests/list_runs.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/list_runs.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "list_runs",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "mcp_boundary_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "mcp_boundary",
crate_root = "tests/mcp_boundary.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/mcp_boundary.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mcp_boundary",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:workspace_cargo_manifests",
"//:workspace_metadata",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "memory_comms_taint_contract_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "memory_comms_taint_contract",
crate_root = "tests/memory_comms_taint_contract.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/memory_comms_taint_contract.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "memory_comms_taint_contract",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "memory_store_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "memory_store",
crate_root = "tests/memory_store.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/memory_store.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "memory_store",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "mob_events_cursor_persistence_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "mob_events_cursor_persistence",
crate_root = "tests/mob_events_cursor_persistence.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/mob_events_cursor_persistence.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mob_events_cursor_persistence",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "mob_events_ingestion_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "mob_events_ingestion",
crate_root = "tests/mob_events_ingestion.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/mob_events_ingestion.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mob_events_ingestion",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "mob_events_query_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "mob_events_query",
crate_root = "tests/mob_events_query.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/mob_events_query.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mob_events_query",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "mob_events_query_ledger_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "mob_events_query_ledger",
crate_root = "tests/mob_events_query_ledger.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/mob_events_query_ledger.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mob_events_query_ledger",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "mob_events_streaming_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "mob_events_streaming",
crate_root = "tests/mob_events_streaming.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/mob_events_streaming.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mob_events_streaming",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "mob_run_labels_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "mob_run_labels",
crate_root = "tests/mob_run_labels.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/mob_run_labels.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mob_run_labels",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "mobkit_gateway_bootstrap_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "mobkit_gateway_bootstrap",
crate_root = "tests/mobkit_gateway_bootstrap.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/mobkit_gateway_bootstrap.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "mobkit_gateway_bootstrap",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:workspace_cargo_manifests",
"//:workspace_metadata",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "module_restart_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "module_restart",
crate_root = "tests/module_restart.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/module_restart.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "module_restart",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "reference_app_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "reference_app",
crate_root = "tests/reference_app.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/reference_app.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "reference_app",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "routing_delivery_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "routing_delivery",
crate_root = "tests/routing_delivery.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/routing_delivery.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "routing_delivery",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"live",
],
data = [
":package_runfiles",
"//:workspace_cargo_manifests",
"//:workspace_metadata",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "rpc_builtins_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "rpc_builtins",
crate_root = "tests/rpc_builtins.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/rpc_builtins.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "rpc_builtins",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "runtime_bootstrap_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "runtime_bootstrap",
crate_root = "tests/runtime_bootstrap.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/runtime_bootstrap.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "runtime_bootstrap",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "schedule_dispatch_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "schedule_dispatch",
crate_root = "tests/schedule_dispatch.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/schedule_dispatch.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "schedule_dispatch",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "schedule_store_text_carry_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "schedule_store_text_carry",
crate_root = "tests/schedule_store_text_carry.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/schedule_store_text_carry.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "schedule_store_text_carry",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "sdk_parity_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "sdk_parity",
crate_root = "tests/sdk_parity.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/sdk_parity.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "sdk_parity",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "sdk_productization_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "sdk_productization",
crate_root = "tests/sdk_productization.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/sdk_productization.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "sdk_productization",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "selector_eval_harness_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "selector_eval_harness",
crate_root = "tests/selector_eval_harness.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/selector_eval_harness.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "selector_eval_harness",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "session_store_jsonl_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "session_store_jsonl",
crate_root = "tests/session_store_jsonl.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/session_store_jsonl.rs",
"tests/support/bigquery_http_mock.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "session_store_jsonl",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "shutdown_drain_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "shutdown_drain",
crate_root = "tests/shutdown_drain.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/shutdown_drain.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "shutdown_drain",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "sse_auth_gate_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "sse_auth_gate",
crate_root = "tests/sse_auth_gate.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/sse_auth_gate.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "sse_auth_gate",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "steward_eval_harness_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "steward_eval_harness",
crate_root = "tests/steward_eval_harness.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/steward_eval_harness.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "steward_eval_harness",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:repo_governance_files",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "swarm_integration_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "swarm_integration",
crate_root = "tests/swarm_integration.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/swarm_integration.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "swarm_integration",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"integration",
],
data = [
":package_runfiles",
"//:workspace_cargo_manifests",
"//:workspace_metadata",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "tool_event_stream_contracts_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "tool_event_stream_contracts",
crate_root = "tests/tool_event_stream_contracts.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/tool_event_stream_contracts.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "tool_event_stream_contracts",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "unified_console_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "unified_console",
crate_root = "tests/unified_console.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/unified_console.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "unified_console",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
rust_test(
name = "wildcard_routes_test",
aliases = aliases(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
proc_macro = True,
proc_macro_dev = True,
),
crate_name = "wildcard_routes",
crate_root = "tests/wildcard_routes.rs",
crate_features = [],
edition = "2024",
compile_data = [
"Cargo.toml",
"assets/release-targets.json",
"console-dist/console-app.css",
"console-dist/console-app.js",
"console-dist/index.html",
"examples/library_mode_reference.rs",
"flow-editor-dist/flow-editor.css",
"flow-editor-dist/flow-editor.js",
"flow-editor-dist/index.html",
"flow-editor-dist/react-globals.js",
"src/adaptive_layer_decision.schema.json",
"src/memory/distiller_prompt_v0.md",
"src/memory/hygienist_prompt_v0.md",
"src/memory/selector_prompt_v0.md",
"src/memory/steward_prompt_v0.md",
"src/unified_runtime/http.rs",
"src/unified_runtime/lifecycle.rs",
],
srcs = [
"tests/wildcard_routes.rs",
],
visibility = ["//visibility:public"],
rustc_env = {
"CARGO_PKG_VERSION": "0.7.21",
"CARGO_BIN_NAME": "wildcard_routes",
"CARGO_MANIFEST_DIR": "./meerkat-mobkit",
},
tags = [
"fast",
],
size = "small",
data = [
":package_runfiles",
"//:workspace_cargo_manifests",
"//:workspace_metadata",
],
env = {
"RUST_MIN_STACK": "16777216",
},
proc_macro_deps = all_crate_deps(
package_name = "meerkat-mobkit",
proc_macro = True,
proc_macro_dev = True,
),
deps = [
"//meerkat-mobkit:meerkat_mobkit",
] + all_crate_deps(
package_name = "meerkat-mobkit",
normal = True,
normal_dev = True,
),
)
test_suite(
name = "fast_tests",
tests = [
":access_control_test",
":agent_lifecycle_test",
":bigquery_adapter_test",
":bigquery_gc_test",
":builder_api_test",
":classic_agent_memory_test",
":console_experience_test",
":console_route_auth_test",
":core_types_and_rpc_test",
":cross_mob_signed_test",
":cross_mob_tcp_test",
":cross_mob_uds_test",
":discovery_bootstrap_test",
":distiller_eval_harness_test",
":event_log_recovery_test",
":external_boundary_test",
":gateway_external_test",
":gateway_memory_config_test",
":gating_policy_test",
":governance_contracts_test",
":hooks_test",
":http_router_test",
":hygienist_eval_harness_test",
":identity_first_boundary_test",
":identity_first_builder_test",
":identity_first_choke_test",
":identity_first_cold_restart_continuity_test",
":identity_first_contracts_test",
":identity_first_kitchen_sink_test",
":identity_first_ob3_smoke_test",
":identity_first_respawn_continuity_test",
":identity_first_runtime_test",
":identity_first_types_test",
":incident_command_center_pack_test",
":jwks_cache_and_auth_test",
":jwt_oidc_auth_test",
":jwt_rsa_test",
":legacy_session_resume_test",
":list_flows_run_flow_test",
":list_runs_test",
":mcp_boundary_test",
":meerkat_mobkit_unit_test",
":memory_comms_taint_contract_test",
":memory_store_test",
":mob_events_cursor_persistence_test",
":mob_events_ingestion_test",
":mob_events_query_ledger_test",
":mob_events_query_test",
":mob_events_streaming_test",
":mob_run_labels_test",
":mobkit_gateway_bootstrap_test",
":module_restart_test",
":reference_app_test",
":rpc_builtins_test",
":runtime_bootstrap_test",
":schedule_dispatch_test",
":schedule_store_text_carry_test",
":sdk_parity_test",
":sdk_productization_test",
":selector_eval_harness_test",
":session_store_jsonl_test",
":shutdown_drain_test",
":sse_auth_gate_test",
":steward_eval_harness_test",
":tool_event_stream_contracts_test",
":unified_console_test",
":wildcard_routes_test",
],
)