3 releases

new 0.1.5 Jun 25, 2024
0.1.4 Jun 15, 2024
0.1.3-1 Jun 3, 2024

#445 in Database interfaces

Download history 185/week @ 2024-06-03 225/week @ 2024-06-10 47/week @ 2024-06-17

457 downloads per month
Used in 2 crates

MIT license

38KB
822 lines

🐬 dorsal

Dorsal is the backbone server structure of Stellular projects! It contains the base SQL helper modules and basic server helpers that make projects supporting sqlite, mysql, and postgresql easy to start and expand.

  • Server crate located in src/
  • Example/template project located in dorsal_example/

The Dorsal example also includes support for the user authentication base that is provided by Guppy, however this is not required.

Usage

Add the package as a dependency:

cargo add dorsal

You can then model after the template project.

Template Only

You can clone only the dorsal_example/ directory with the command below:

PROJECT_NAME="dorsal_example" &&
git clone --depth=1 https://github.com/stellularorg/dorsal $PROJECT_NAME &&
cd $PROJECT_NAME &&
git sparse-checkout set --no-cone dorsal_example &&
mv dorsal_example ../tmpdex &&
cd ../ &&
sudo rm -r $PROJECT_NAME &&
mv ./tmpdex $PROJECT_NAME &&
cd $PROJECT_NAME

Dependencies

~38–51MB
~886K SLoC