33 lines
725 B
TOML
33 lines
725 B
TOML
[build]
|
|
type = "cmake"
|
|
|
|
[build.flags]
|
|
build_dir = "build"
|
|
configure = [
|
|
"-DBUILD_SHARED_LIBS=ON",
|
|
"-DCPM_USE_LOCAL_PACKAGES=ON",
|
|
"-DSIMDJSON_ALLOW_DOWNLOADS=Off",
|
|
"-DSIMDJSON_DEVELOPER_MODE=ON",
|
|
"-Wno-dev",
|
|
]
|
|
skip_tests = true
|
|
|
|
[dependencies]
|
|
build = ["cmake"]
|
|
runtime = [
|
|
"libunwind",
|
|
"libcxx",
|
|
]
|
|
|
|
[package]
|
|
description = "A C++ library to see how fast we can parse JSON with complete validation."
|
|
homepage = "https://github.com/simdjson/simdjson"
|
|
license = "Apache-2.0"
|
|
name = "simdjson"
|
|
version = "4.3.1"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "84e4653ad290080b816f6488e19431ebf29cdf89d4ec58ded691943e545aa44d"
|
|
url = "https://github.com/simdjson/simdjson/archive/v$version.tar.gz"
|