-
Notifications
You must be signed in to change notification settings - Fork 48
docs: document 28 of the existing rust community modules #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 5 commits
6506396
59611e2
4370287
eac08c7
b12e1b7
9c21e3f
e6b953f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,6 +77,18 @@ docs: | |
```bash | ||
pip install testcontainers[neo4j] | ||
``` | ||
- id: rust | ||
url: https://docs.rs/testcontainers-modules/latest/testcontainers_modules/oracle/free/struct.Oracle.html | ||
maintainer: community | ||
example: | | ||
```rust | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lets keep the warning ^^ |
||
// On slower machines more time needed than 60 seconds may be required (see `with_startup_timeout`). | ||
testcontainers_modules::oracle::free::Oracle::default().start() | ||
``` | ||
installation: | | ||
```bash | ||
cargo add -F oracle --dev testcontainers-modules | ||
``` | ||
description: | | ||
Neo4j is a highly scalable open source graph database management system. | ||
--- |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,18 @@ docs: | |
```bash | ||
npm install @testcontainers/postgresql --save-dev | ||
``` | ||
- id: rust | ||
url: https://docs.rs/testcontainers-modules/latest/testcontainers_modules/postgres/struct.Postgres.html | ||
maintainer: community | ||
example: | | ||
```rust | ||
use testcontainers::core::ImageExt; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since this does not work otherwise, here I am keeping the imports. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's technically possible to call this like But I definitely agree that import is way better for trait here |
||
testcontainers_modules::postgres::Postgres::default().with_name("postgis/postgis").with_tag("16-3.5-alpine").start() | ||
``` | ||
installation: | | ||
```bash | ||
cargo add -F postgres --dev testcontainers-modules | ||
``` | ||
description: | | ||
PostGIS extends the capabilities of the PostgreSQL relational database by adding support for storing, indexing, and querying geospatial data. | ||
--- |
Uh oh!
There was an error while loading. Please reload this page.