14 releases

0.5.7 Nov 15, 2024
0.5.5 Oct 15, 2024
0.5.0 Apr 11, 2024
0.4.1 Feb 7, 2024

#1272 in Database interfaces

Download history 101/week @ 2024-09-11 27/week @ 2024-09-18 120/week @ 2024-09-25 49/week @ 2024-10-02 67/week @ 2024-10-09 87/week @ 2024-10-16 14/week @ 2024-10-23 117/week @ 2024-10-30 40/week @ 2024-11-06 123/week @ 2024-11-13 19/week @ 2024-11-20 8/week @ 2024-11-27 23/week @ 2024-12-04 40/week @ 2024-12-11

66 downloads per month

MIT license

31KB
731 lines

simple_pg

A work in progress series of crates to simply working postgreSQL in rust. Based on:

Primary Goals:

  • Deeply integrate query builder.
  • Unify client types so generic client isn't needed. Replaced by impl Deref<Conn>.
  • Provided methods for fast & parallel unit testing via schema universes.
  • Optimize performance for our use cases.
  • Reduce incremental compile times via reducing monomorphization.

Features

SQL macro

    sql!(INSERT INTO schema.table VALUES(
        { entity.id },
        "some_text",
        ST_SetSRID({ geometry }), 4326)
    )).execute(&mut tx)?;

Dependencies

~7–16MB
~214K SLoC