7 releases

0.1.0 Apr 29, 2024
0.0.6 Apr 20, 2024
0.0.5 Sep 25, 2023
0.0.4 Jul 8, 2023
0.0.3 Jan 8, 2023

#596 in Database interfaces

Download history 21/week @ 2024-02-20 23/week @ 2024-02-27 1/week @ 2024-03-12 1/week @ 2024-03-26 14/week @ 2024-04-02 129/week @ 2024-04-16 103/week @ 2024-04-23 129/week @ 2024-04-30

361 downloads per month
Used in 2 crates

MIT/Apache

1.5MB
4.5K SLoC

pgstac

GitHub Workflow Status docs.rs Crates.io Contributor Covenant

Rust interface for pgstac.

Usage

In your Cargo.toml:

[dependencies]
pgstac = "0.1"

See the documentation for more.

Testing

pgstac needs a blank pgstac database for testing, so is not part of the default workspace build. To test:

docker-compose -f pgstac/docker-compose.yml up -d
cargo test -p pgstac
docker-compose -f pgstac/docker-compose.yml down

Each test is run in its own transaction, which is rolled back after the test.

Customizing the test database connection

By default, the tests will connect to the database at postgresql://username:password@localhost:5432/postgis. If you need to customize the connection information for whatever reason, set your PGSTAC_RS_TEST_DB environment variable:

PGSTAC_RS_TEST_DB=postgresql://otherusername:otherpassword@otherhost:7822/otherdbname cargo test

Other info

This crate is part of the stac-rs monorepo, see its README for contributing and license information.

Dependencies

~11–22MB
~388K SLoC