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

#1481 in Database interfaces

Download history 130/week @ 2024-10-12 23/week @ 2024-10-19 14/week @ 2024-10-26 134/week @ 2024-11-02 82/week @ 2024-11-09 69/week @ 2024-11-16 7/week @ 2024-11-23 23/week @ 2024-11-30 47/week @ 2024-12-07

1,171 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

~8–17MB
~224K SLoC