mirror of
https://github.com/google/cpu_features.git
synced 2025-04-26 22:52:30 +02:00
19 lines
701 B
Python
19 lines
701 B
Python
###############################################################################
|
|
# Bazel now uses Bzlmod by default to manage external dependencies.
|
|
# Please consider migrating your external dependencies from WORKSPACE to MODULE.bazel.
|
|
#
|
|
# For more details, please check https://github.com/bazelbuild/bazel/issues/18958
|
|
###############################################################################
|
|
|
|
CPU_FEATURES_VERSION = "0.9.0"
|
|
|
|
module(
|
|
name = "cpu_features",
|
|
repo_name = "com_google_cpufeatures",
|
|
version = CPU_FEATURES_VERSION,
|
|
)
|
|
|
|
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
|
bazel_dep(name = "googletest", version = "1.15.2")
|
|
bazel_dep(name = "platforms", version = "0.0.10")
|