load("@fbcode_macros//build_defs:rust_library.bzl", "rust_library")
load("@fbsource//tools/build_defs:glob_defs.bzl", "glob")
oncall("build_infra")
rust_library(
name = "static_interner",
srcs = glob(["src/**/*.rs"]),
crate_root = "src/lib.rs",
deps = [
"fbsource//third-party/rust:equivalent",
"//buck2/allocative/allocative:allocative",
"//buck2/gazebo/dupe:dupe",
"//buck2/shed/lock_free_hashtable:lock_free_hashtable",
],
)