Skip to content

Dart

Tunnel supports Dart.

The following scanners are supported.

Package manager SBOM Vulnerability License
Dart -

The following table provides an outline of the features Tunnel offers.

Package manager File Transitive dependencies Dev dependencies Dependency graph Position Detection Priority
Dart pubspec.lock Included -

Dart

In order to detect dependencies, Tunnel searches for pubspec.lock.

Tunnel marks indirect dependencies, but pubspec.lock file doesn't have options to separate root and dev transitive dependencies. So Tunnel includes all dependencies in report.

SDK dependencies

Dart uses version 0.0.0 for SDK dependencies (e.g. Flutter). It is not possible to accurately determine the versions of these dependencies. Tunnel just treats them as 0.0.0.

If --detection-priority comprehensive is passed, Tunnel uses the minimum version of the constraint for the SDK. For example, in the following case, the version of flutter would be 3.3.0:

flutter:
  dependency: "direct main"
  description: flutter
  source: sdk
  version: "0.0.0"
sdks:
  dart: ">=2.18.0 <3.0.0"
  flutter: "^3.3.0"

Dependency tree

To build dependency tree Tunnel parses cache directory. Currently supported default directories and PUB_CACHE environment (absolute path only).

Note

Make sure the cache directory contains all the dependencies installed in your application. To download missing dependencies, use dart pub get command.