A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.
at master 615 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT * FROM users WHERE email = $1", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Int4" 10 }, 11 { 12 "ordinal": 1, 13 "name": "email", 14 "type_info": "Varchar" 15 }, 16 { 17 "ordinal": 2, 18 "name": "password_hash", 19 "type_info": "Text" 20 } 21 ], 22 "parameters": { 23 "Left": [ 24 "Text" 25 ] 26 }, 27 "nullable": [ 28 false, 29 false, 30 false 31 ] 32 }, 33 "hash": "f3f58600e971f1be6cbe206bba24f77769f54c6230e28f5b3dc719b869d9cb3f" 34}