10630e2858
This CL is part of an effort to bump the SDK requirement to `3.12.0-0` for all the packages in `pkg` that are not published to `pub`, so that we can get better testing of the "private named parameters" feature. (Packages that *are* published to `pub` can't be safely bumped yet, because SDK 3.12 hasn't been released, and I don't want to block those packages' ability to publish useful updates to customers.) This change covers the following packages, which have empty OWNERS files: - pkg/heap_snapshot - pkg/perf_witness - pkg/shell_arg_splitter Changes to `pubspec.yaml` files were made manually. Change-Id: Ie5c9dbd116be3537e84b1df4ca93d8d06a6a6964 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/487920 Reviewed-by: Slava Egorov <vegorov@google.com> Commit-Queue: Slava Egorov <vegorov@google.com> Auto-Submit: Paul Berry <paulberry@google.com>
28 lines
737 B
YAML
28 lines
737 B
YAML
name: perf_witness
|
|
version: 0.0.1
|
|
description: Shared performance observability infrastructure for Dart CLI tools
|
|
repository: https://github.com/dart-lang/sdk/tree/main/pkg/perf_witness
|
|
publish_to: none
|
|
resolution: workspace
|
|
|
|
environment:
|
|
sdk: '^3.12.0-0'
|
|
|
|
dependencies:
|
|
args: any
|
|
dart_data_home: any
|
|
ffi: any
|
|
json_rpc_2: any
|
|
path: any
|
|
stream_channel: any
|
|
|
|
# We use 'any' version constraints here as we get our package versions from
|
|
# the dart-lang/sdk repo's DEPS file. Note that this is a special case; the
|
|
# best practice for packages is to specify their compatible version ranges.
|
|
# See also https://dart.dev/tools/pub/dependencies.
|
|
dev_dependencies:
|
|
collection: any
|
|
lints: any
|
|
test: any
|
|
vm_service_protos: any
|