-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpubspec.yaml
84 lines (80 loc) · 1.7 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: coast_audio
description: A cross-platform audio library written in Dart with FFI. You can play, record, and process audio with managed memory support.
version: 1.0.0
repository: https://github.com/SKKbySSK/coast_audio
environment:
sdk: ">=3.1.0 <4.0.0"
dependencies:
ffi: ^2.0.1
build_runner: ^2.4.8
meta: ^1.11.0
dev_dependencies:
lints: ^2.0.0
test: ^1.16.0
mockito: ^5.4.4
coverage: ^1.7.2
ffigen: ^11.0.0
remove_from_coverage: ^2.0.0
ffigen:
name: NativeBindings
description: "FFI bindings for native code"
output: "lib/src/interop/internal/generated/bindings.dart"
preamble: |
// coverage:ignore-file
compiler-opts:
- "-Inative/miniaudio/extras/miniaudio_split"
headers:
entry-points:
- "native/src/coast_audio.h"
- "native/src/ca_dart.h"
- "native/src/ca_context.h"
- "native/src/ca_device.h"
- "native/src/ca_log.h"
- "native/miniaudio/extras/miniaudio_split/miniaudio.h"
functions:
include:
- "coast_audio_.*"
- "ca_.*"
- "ma_.*"
- "Dart_InitializeApiDL"
leaf:
include:
- "ca_.*"
- "ma_.*"
- "Dart_InitializeApiDL"
exclude:
- "ma_encoder_.*"
- "ma_decoder_.*"
structs:
include:
- "ca_.*"
- "ma_.*"
member-rename:
".*":
"_(.*)": "$1"
unions:
include:
- "ca_.*"
- "ma_.*"
member-rename:
".*":
"_(.*)": "$1"
enums:
include:
- "ca_.*"
- "ma_.*"
member-rename:
".*":
"_(.*)": "$1"
unnamed-enums:
include:
- "ca_.*"
- "ma_.*"
macros:
include:
- "ca_.*"
- "ma_.*"
globals:
include:
- "ca_.*"
- "ma_.*"