summaryrefslogtreecommitdiff
path: root/tables/Cargo.toml
diff options
context:
space:
mode:
authorAndrew Guschin <guschin@altlinux.org>2024-10-28 19:18:49 +0400
committerAndrew Guschin <guschin@altlinux.org>2024-10-28 19:25:29 +0400
commitdee23e4c5b148c99b1d4929d8d9b27e149cc8298 (patch)
tree25ed0294115fdc9832084462ff208449bb9ba676 /tables/Cargo.toml
parent8a150ccc32b88842c70a9bffb4728cb420fe721d (diff)
feat: add table formatter program
Diffstat (limited to 'tables/Cargo.toml')
-rw-r--r--tables/Cargo.toml10
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"] }