diff options
| author | Andrew Guschin <guschin@altlinux.org> | 2024-10-28 19:18:49 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin@altlinux.org> | 2024-10-28 19:25:29 +0400 |
| commit | dee23e4c5b148c99b1d4929d8d9b27e149cc8298 (patch) | |
| tree | 25ed0294115fdc9832084462ff208449bb9ba676 /tables/Cargo.toml | |
| parent | 8a150ccc32b88842c70a9bffb4728cb420fe721d (diff) | |
feat: add table formatter program
Diffstat (limited to 'tables/Cargo.toml')
| -rw-r--r-- | tables/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tables/Cargo.toml b/tables/Cargo.toml new file mode 100644 index 0000000..08f6e36 --- /dev/null +++ b/tables/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "tables" +version = "0.1.0" +edition = "2021" + +[dependencies] +anyhow = "1.0.91" +dotenv = "0.15.0" +sqlx = { version = "0.8.2", features = ["runtime-tokio", "sqlite"] } +tokio = { version = "1.41.0", features = ["full"] } |