wip: implementing db initialization

This commit is contained in:
Alexander Navarro 2024-11-13 19:55:02 +00:00
parent ffd3c2014e
commit 89d7b8130a
18 changed files with 745 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"}