peridot/vendor/github.com/json-iterator/go/BUILD.bazel
2022-07-07 22:13:21 +02:00

57 lines
1.4 KiB
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go",
srcs = [
"adapter.go",
"any.go",
"any_array.go",
"any_bool.go",
"any_float.go",
"any_int32.go",
"any_int64.go",
"any_invalid.go",
"any_nil.go",
"any_number.go",
"any_object.go",
"any_str.go",
"any_uint32.go",
"any_uint64.go",
"config.go",
"iter.go",
"iter_array.go",
"iter_float.go",
"iter_int.go",
"iter_object.go",
"iter_skip.go",
"iter_skip_strict.go",
"iter_str.go",
"jsoniter.go",
"pool.go",
"reflect.go",
"reflect_array.go",
"reflect_dynamic.go",
"reflect_extension.go",
"reflect_json_number.go",
"reflect_json_raw_message.go",
"reflect_map.go",
"reflect_marshaler.go",
"reflect_native.go",
"reflect_optional.go",
"reflect_slice.go",
"reflect_struct_decoder.go",
"reflect_struct_encoder.go",
"stream.go",
"stream_float.go",
"stream_int.go",
"stream_str.go",
],
importmap = "peridot.resf.org/vendor/github.com/json-iterator/go",
importpath = "github.com/json-iterator/go",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/modern-go/concurrent",
"//vendor/github.com/modern-go/reflect2",
],
)