├── .gitattributes ├── .github └── dependabot.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples └── dart-ffi │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── analysis_options.yaml │ ├── bin │ └── dart_ffi.dart │ ├── lib │ ├── dart_ffi.dart │ └── src │ │ └── prisma_bindings.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── dart_ffi_test.dart └── src ├── error.rs ├── lib.rs ├── query_engine.rs ├── schema.rs └── version.rs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/README.md -------------------------------------------------------------------------------- /examples/dart-ffi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/examples/dart-ffi/.gitignore -------------------------------------------------------------------------------- /examples/dart-ffi/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /examples/dart-ffi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/examples/dart-ffi/README.md -------------------------------------------------------------------------------- /examples/dart-ffi/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/examples/dart-ffi/analysis_options.yaml -------------------------------------------------------------------------------- /examples/dart-ffi/bin/dart_ffi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/examples/dart-ffi/bin/dart_ffi.dart -------------------------------------------------------------------------------- /examples/dart-ffi/lib/dart_ffi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/examples/dart-ffi/lib/dart_ffi.dart -------------------------------------------------------------------------------- /examples/dart-ffi/lib/src/prisma_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/examples/dart-ffi/lib/src/prisma_bindings.dart -------------------------------------------------------------------------------- /examples/dart-ffi/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/examples/dart-ffi/pubspec.lock -------------------------------------------------------------------------------- /examples/dart-ffi/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/examples/dart-ffi/pubspec.yaml -------------------------------------------------------------------------------- /examples/dart-ffi/test/dart_ffi_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/examples/dart-ffi/test/dart_ffi_test.dart -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/query_engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/src/query_engine.rs -------------------------------------------------------------------------------- /src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/src/schema.rs -------------------------------------------------------------------------------- /src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medz/prisma-library/HEAD/src/version.rs --------------------------------------------------------------------------------