-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpubspec.yaml
42 lines (30 loc) · 1.27 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# SPDX-License-Identifier: AGPL-3.0-or-later
name: deeplink_rpc
description: A RPC-via-deeplink communication library coded in Dart. This is dedicated to Flutter mobile applications (iOS / Android).
version: 1.1.0
homepage: https://github.com/archethic-foundation/lib-deeplink-rpc.git
environment:
sdk: ">=3.3.0 <4.0.0"
dependencies:
# Compression
archive: ^3.6.1
# Annotations for the freezed code-generator. This package does nothing without freezed too
freezed_annotation: ^2.4.1
# Annotations for the JsonSerializable code-generator.
json_annotation: ^4.9.0
logging: ^1.2.0
# Flutter plugin for launching a URL. Supports web, phone, SMS, and email schemes.
url_launcher: ^6.3.0
# RFC4122 (v1, v4, v5) UUID Generator and Parser for all Dart platforms (Web, VM, Flutter)
uuid: ^4.4.0
dev_dependencies:
# A build system for Dart code generation and modular compilation
build_runner: ^2.4.11
flutter:
sdk: flutter
# Code generation for immutable classes that has a simple syntax/API without compromising on the features.
freezed: ^2.4.5
# Automatically generate code for converting to and from JSON by annotating Dart classes.
json_serializable: ^6.8.0
# A full featured library for writing and running Dart tests across platforms.
test: ^1.24.8