├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── ROADMAP.md ├── docs ├── bson.md └── mongo.md ├── examples ├── count-example.v ├── find-example.v ├── find-lean-example.v └── insert-example.v └── src ├── bson.v ├── bson_append.v ├── bson_fn.c.v ├── bson_oid.v ├── bson_structs.c.v ├── bson_test.v ├── bson_types.v ├── c_enums.c.v ├── client.v ├── client_pool.v ├── collection.v ├── collection_test.v ├── cursor.v ├── database.v ├── mongo.v ├── mongo_fn.c.v ├── mongo_structs.c.v ├── mongo_utils.v ├── stream.v ├── test_mongo.v ├── thirdparty ├── libbson-1.0 │ ├── bson.h │ └── bson │ │ ├── bcon.h │ │ ├── bson-atomic.h │ │ ├── bson-clock.h │ │ ├── bson-compat.h │ │ ├── bson-config.h │ │ ├── bson-context.h │ │ ├── bson-decimal128.h │ │ ├── bson-endian.h │ │ ├── bson-error.h │ │ ├── bson-iter.h │ │ ├── bson-json.h │ │ ├── bson-keys.h │ │ ├── bson-macros.h │ │ ├── bson-md5.h │ │ ├── bson-memory.h │ │ ├── bson-oid.h │ │ ├── bson-prelude.h │ │ ├── bson-reader.h │ │ ├── bson-string.h │ │ ├── bson-types.h │ │ ├── bson-utf8.h │ │ ├── bson-value.h │ │ ├── bson-version-functions.h │ │ ├── bson-version.h │ │ ├── bson-writer.h │ │ └── bson.h └── libmongoc-1.0 │ ├── mongoc.h │ └── mongoc │ ├── mongoc-apm.h │ ├── mongoc-bulk-operation.h │ ├── mongoc-change-stream.h │ ├── mongoc-client-pool.h │ ├── mongoc-client-session.h │ ├── mongoc-client-side-encryption.h │ ├── mongoc-client.h │ ├── mongoc-collection.h │ ├── mongoc-config.h │ ├── mongoc-cursor.h │ ├── mongoc-database.h │ ├── mongoc-error.h │ ├── mongoc-find-and-modify.h │ ├── mongoc-flags.h │ ├── mongoc-gridfs-bucket.h │ ├── mongoc-gridfs-file-list.h │ ├── mongoc-gridfs-file-page.h │ ├── mongoc-gridfs-file.h │ ├── mongoc-gridfs.h │ ├── mongoc-handshake.h │ ├── mongoc-host-list.h │ ├── mongoc-index.h │ ├── mongoc-init.h │ ├── mongoc-iovec.h │ ├── mongoc-log.h │ ├── mongoc-macros.h │ ├── mongoc-matcher.h │ ├── mongoc-opcode.h │ ├── mongoc-optional.h │ ├── mongoc-prelude.h │ ├── mongoc-rand.h │ ├── mongoc-read-concern.h │ ├── mongoc-read-prefs.h │ ├── mongoc-server-api.h │ ├── mongoc-server-description.h │ ├── mongoc-socket.h │ ├── mongoc-ssl.h │ ├── mongoc-stream-buffered.h │ ├── mongoc-stream-file.h │ ├── mongoc-stream-gridfs.h │ ├── mongoc-stream-socket.h │ ├── mongoc-stream-tls-libressl.h │ ├── mongoc-stream-tls-openssl.h │ ├── mongoc-stream-tls.h │ ├── mongoc-stream.h │ ├── mongoc-topology-description.h │ ├── mongoc-uri.h │ ├── mongoc-version-functions.h │ ├── mongoc-version.h │ ├── mongoc-write-concern.h │ └── mongoc.h ├── uri.v └── v.mod /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /docs/bson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/docs/bson.md -------------------------------------------------------------------------------- /docs/mongo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/docs/mongo.md -------------------------------------------------------------------------------- /examples/count-example.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/examples/count-example.v -------------------------------------------------------------------------------- /examples/find-example.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/examples/find-example.v -------------------------------------------------------------------------------- /examples/find-lean-example.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/examples/find-lean-example.v -------------------------------------------------------------------------------- /examples/insert-example.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/examples/insert-example.v -------------------------------------------------------------------------------- /src/bson.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/bson.v -------------------------------------------------------------------------------- /src/bson_append.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/bson_append.v -------------------------------------------------------------------------------- /src/bson_fn.c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/bson_fn.c.v -------------------------------------------------------------------------------- /src/bson_oid.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/bson_oid.v -------------------------------------------------------------------------------- /src/bson_structs.c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/bson_structs.c.v -------------------------------------------------------------------------------- /src/bson_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/bson_test.v -------------------------------------------------------------------------------- /src/bson_types.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/bson_types.v -------------------------------------------------------------------------------- /src/c_enums.c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/c_enums.c.v -------------------------------------------------------------------------------- /src/client.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/client.v -------------------------------------------------------------------------------- /src/client_pool.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/client_pool.v -------------------------------------------------------------------------------- /src/collection.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/collection.v -------------------------------------------------------------------------------- /src/collection_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/collection_test.v -------------------------------------------------------------------------------- /src/cursor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/cursor.v -------------------------------------------------------------------------------- /src/database.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/database.v -------------------------------------------------------------------------------- /src/mongo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/mongo.v -------------------------------------------------------------------------------- /src/mongo_fn.c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/mongo_fn.c.v -------------------------------------------------------------------------------- /src/mongo_structs.c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/mongo_structs.c.v -------------------------------------------------------------------------------- /src/mongo_utils.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/mongo_utils.v -------------------------------------------------------------------------------- /src/stream.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/stream.v -------------------------------------------------------------------------------- /src/test_mongo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/test_mongo.v -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bcon.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-atomic.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-clock.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-compat.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-config.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-context.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-decimal128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-decimal128.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-endian.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-error.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-iter.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-json.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-keys.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-macros.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-md5.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-memory.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-oid.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-prelude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-prelude.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-reader.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-string.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-types.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-utf8.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-value.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-version-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-version-functions.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-version.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson-writer.h -------------------------------------------------------------------------------- /src/thirdparty/libbson-1.0/bson/bson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libbson-1.0/bson/bson.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-apm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-apm.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-bulk-operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-bulk-operation.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-change-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-change-stream.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-client-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-client-pool.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-client-session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-client-session.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-client-side-encryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-client-side-encryption.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-client.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-collection.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-config.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-cursor.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-database.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-error.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-find-and-modify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-find-and-modify.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-flags.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs-bucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs-bucket.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs-file-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs-file-list.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs-file-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs-file-page.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs-file.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-gridfs.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-handshake.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-host-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-host-list.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-index.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-init.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-iovec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-iovec.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-log.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-macros.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-matcher.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-opcode.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-optional.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-prelude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-prelude.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-rand.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-read-concern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-read-concern.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-read-prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-read-prefs.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-server-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-server-api.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-server-description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-server-description.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-socket.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-ssl.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-buffered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-buffered.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-file.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-gridfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-gridfs.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-socket.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-tls-libressl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-tls-libressl.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-tls-openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-tls-openssl.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream-tls.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-stream.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-topology-description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-topology-description.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-uri.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-version-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-version-functions.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-version.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc-write-concern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc-write-concern.h -------------------------------------------------------------------------------- /src/thirdparty/libmongoc-1.0/mongoc/mongoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/thirdparty/libmongoc-1.0/mongoc/mongoc.h -------------------------------------------------------------------------------- /src/uri.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/uri.v -------------------------------------------------------------------------------- /src/v.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/mongo/HEAD/src/v.mod --------------------------------------------------------------------------------