36 lines
694 B
TOML
36 lines
694 B
TOML
[build]
|
|
type = "cmake"
|
|
|
|
[build.flags]
|
|
build_dir = "build"
|
|
configure = [
|
|
"-Wno-dev",
|
|
"-DBUILD_SHARED_LIBS=ON",
|
|
"-DRE2_BUILD_TESTING=ON",
|
|
]
|
|
|
|
[dependencies]
|
|
build = ["cmake"]
|
|
runtime = [
|
|
"glibc",
|
|
"libcxx",
|
|
"libunwind",
|
|
"abseil-cpp",
|
|
]
|
|
test = [
|
|
"gtest",
|
|
"benchmark",
|
|
]
|
|
|
|
[package]
|
|
description = "Fast, safe, thread-friendly regular expression engine"
|
|
homepage = "https://github.com/google/re2"
|
|
license = "BSD-3-Clause"
|
|
name = "re2"
|
|
version = "2025.11.05"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "87f6029d2f6de8aa023654240a03ada90e876ce9a4676e258dd01ea4c26ffd67"
|
|
url = "https://github.com/google/re2/releases/download/2025-11-05/re2-2025-11-05.tar.gz"
|