feat: implement database handlerImplement a database api to manage nodes and relationships in a "graph databaselike" implemented in sqlite.closes #1

This commit is contained in:
Alexander Navarro 2024-11-13 19:55:02 +00:00
parent 5aaacb10e3
commit b2d8dadcee
17 changed files with 963 additions and 0 deletions

View file

@ -0,0 +1,6 @@
name,category,metadata
Actix,web framework,"{""website"":""https://actix.rs"",""github"":""actix/actix-web"",""crate"":""actix-web""}"
Clap,cli,"{""website"":""https://clap.rs"",""github"":""clap-rs/clap"",""crate"":""clap""}"
Tokio,async runtime,"{""website"":""https://tokio.rs"",""github"":""tokio-rs/tokio"",""crate"":""tokio""}"
Reqwest,http client,"{""github"":""seanmonstar/reqwest"",""crate"":""reqwest"",""async_support"":true}"
Serde,serialization,"{""website"":""https://serde.rs"",""github"":""serde-rs/serde"",""crate"":""serde""}"
1 name category metadata
2 Actix web framework {"website":"https://actix.rs","github":"actix/actix-web","crate":"actix-web"}
3 Clap cli {"website":"https://clap.rs","github":"clap-rs/clap","crate":"clap"}
4 Tokio async runtime {"website":"https://tokio.rs","github":"tokio-rs/tokio","crate":"tokio"}
5 Reqwest http client {"github":"seanmonstar/reqwest","crate":"reqwest","async_support":true}
6 Serde serialization {"website":"https://serde.rs","github":"serde-rs/serde","crate":"serde"}