-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpubspec.yaml
53 lines (47 loc) · 1.05 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
name: llama_cpp_dart
description: "Dart binding for llama.cpp --- high level wrappers for both Dart and Flutter"
version: 0.0.8
homepage: https://github.com/netdur/llama_cpp_dart
environment:
sdk: '>=3.2.0 <4.0.0'
flutter: ">=1.20.0"
dependencies:
flutter:
sdk: flutter
ffi: ^2.1.3
typed_isolate: ^6.0.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^5.0.0
ffigen: ^16.0.0
path_provider: ^2.1.5
system_info2: ^4.0.0
analyzer:
exclude:
- 'lib/src/llama_cpp.dart'
ffigen: # dart run ffigen
name: 'llama_cpp'
description: 'llama.cpp binding'
output: 'lib/src/llama_cpp.dart'
# ignore-source-errors: true
headers:
entry-points:
- 'src/llama.cpp/include/llama.h'
compiler-opts:
- '-I/usr/lib/clang/17/include'
- '-Isrc/llama.cpp/ggml/include'
- '-Isrc/llama.cpp/include'
flutter:
plugin:
platforms:
ios:
ffiPlugin: true
macos:
ffiPlugin: true
android:
ffiPlugin: true
linux:
ffiPlugin: true
windows:
ffiPlugin: true