forked from TigerEyeLabs/duckdb-dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubspec.yaml
66 lines (61 loc) · 1.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: dart_duckdb
description: Provides lightweight yet convenient bindings to DuckDB by using dart:ffi
version: 1.1.3
homepage: https://github.com/TigerEyeLabs/duckdb-dart
issue_tracker: https://github.com/duckdb/duckdb/issues
environment:
sdk: '>=3.0.0 <4.0.0'
flutter: '>=1.10.0'
dependencies:
async: ^2.11.0
collection: ^1.17.0
ffi: ^2.0.1
intl: ^0.19.0
meta: ^1.8.0
path: ^1.8.2
uuid: ^4.4.0
dev_dependencies:
ffigen: ^11.0.0
lints: ^2.1.1
flutter_test:
sdk: flutter
test: ^1.22.0
flutter:
# This section identifies this Flutter project as a plugin project.
# The pluginClass identifiers should not ordinarily be modified.
# They are used by the tooling to maintain consistency when
# adding or updating assets for this project.
plugin:
platforms:
ios:
dartPluginClass: DuckDB
pluginClass: DuckDBPlugin
macos:
dartPluginClass: DuckDB
pluginClass: DuckDBPlugin
windows:
dartPluginClass: DuckDB
pluginClass: DartDuckdbPluginCApi
android:
dartPluginClass: DuckDB
package: com.tigereye.duckdb_libs
pluginClass: DuckdbLibsPlugin
linux:
dartPluginClass: DuckDB
pluginClass: DartDuckdbPlugin
ffigen:
output: "lib/src/ffi/duckdb.g.dart"
name: Bindings
description: Auto-generated, internal bindings to DuckDB
headers:
entry-points: [assets/duckdb.h]
structs:
include: ["duckdb.*"]
macros:
include: ["duckdb.*"]
globals:
include: ["duckdb.*"]
preamble: |
// This file is generated by ffigen. Do not modify directly.
// coverage:ignore-file
// ignore_for_file: type = lint