2023-03-20 19:48:43 +00:00
[ package ]
name = "csql"
2023-06-05 13:59:16 +00:00
version = "1.0.0"
2023-03-20 19:48:43 +00:00
edition = "2021"
2023-06-05 13:59:16 +00:00
license = "CC-BY-SA-4.0"
authors = [ "Djkáťo <djkatovfx@gmail.com>" ]
2023-03-20 21:52:47 +00:00
readme = "README.md"
2023-06-05 13:59:16 +00:00
homepage = "https://github.com/djkato/CSQL"
repository = "https://github.com/djkato/CSQL"
keywords = [ "database" , "sql" , "ui" ]
categories = [ "database" , "database-implementations" , "text-editors" ]
description = "An assistant tool to easily map a CSV spreadsheets' collumns to a database tables' fields. Great for mass uploading products from a manufacturer provided catalog to an e-shop."
2023-03-20 19:48:43 +00:00
2023-06-05 14:07:52 +00:00
exclude = [ "*.sh" , "*.sql" , "*.csv" ]
2023-03-20 19:48:43 +00:00
[ dependencies ]
2023-06-05 13:59:16 +00:00
sqlx = { version = "0.6.2" , features = [ "runtime-tokio-native-tls" , "mysql" ] }
2023-03-20 19:48:43 +00:00
tokio = { version = "1.25.0" , features = [ "full" ] }
2023-05-02 12:33:54 +00:00
# ["rt", "io-std", "macros", "parking_lot", "sync" ]
# dotenvy = "0.15.6"
# directories = "4.0.1"
2023-03-20 19:48:43 +00:00
csv = "1.1.6"
egui = "0.21.0"
eframe = "0.21.0"
egui_extras = "0.21.0"
rfd = "0.11.1"
2023-06-05 13:59:16 +00:00
grid = "0.10.0"
2023-05-02 12:33:54 +00:00
# regex = "1.7.1"
2023-03-20 19:48:43 +00:00
chrono = "0.4.24"
2023-04-16 18:51:50 +00:00
if_chain = "1.0.2"
2023-05-02 12:33:54 +00:00
# serde = "1.0.160"