2025-05-01 08:32:50 +09:00
|
|
|
[package]
|
|
|
|
name = "dpts"
|
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2025-05-02 08:57:43 +09:00
|
|
|
dpts-config.workspace = true
|
|
|
|
dpts-csv.workspace = true
|
|
|
|
dpts-entity.workspace = true
|
|
|
|
dpts-error.workspace = true
|
|
|
|
dpts-migration.workspace = true
|
|
|
|
dpts-database.workspace = true
|
2025-05-01 08:32:50 +09:00
|
|
|
|
2025-04-22 14:38:32 +09:00
|
|
|
[workspace]
|
2025-05-01 08:32:50 +09:00
|
|
|
members = [".", "dpts-*"]
|
2025-04-24 09:26:24 +09:00
|
|
|
|
|
|
|
[workspace.dependencies]
|
2025-05-01 08:32:50 +09:00
|
|
|
dpts = { path = "." }
|
2025-05-02 08:57:43 +09:00
|
|
|
dpts-config = { path = "dpts-config" }
|
2025-05-01 08:32:50 +09:00
|
|
|
dpts-csv = { path = "dpts-csv" }
|
2025-05-01 20:43:03 +09:00
|
|
|
dpts-database = { path = "dpts-database" }
|
2025-05-01 08:32:50 +09:00
|
|
|
dpts-entity = { path = "dpts-entity" }
|
|
|
|
dpts-error = { path = "dpts-error" }
|
2025-04-28 14:56:28 +09:00
|
|
|
dpts-migration = {path = "dpts-migration"}
|
2025-04-28 20:15:58 +09:00
|
|
|
chrono = {version = "0.4", features = ["serde"]}
|
2025-05-03 11:17:38 +09:00
|
|
|
chrono-tz = {version = "0.10.3", features = ["serde"]}
|
2025-04-27 10:04:04 +09:00
|
|
|
clap = "4.5"
|
2025-04-27 19:22:46 +09:00
|
|
|
dotenv = "0.15.0"
|
2025-05-01 20:43:03 +09:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2025-05-03 11:17:38 +09:00
|
|
|
thiserror = "2.0.12"
|
2025-05-02 08:57:43 +09:00
|
|
|
tokio = "1.44.2"
|
|
|
|
toml = "0.8.22"
|
2025-04-27 10:04:04 +09:00
|
|
|
|
2025-05-03 15:31:13 +09:00
|
|
|
[workspace.dependencies.sea-orm]
|
|
|
|
version = "1.1"
|
|
|
|
features = [
|
|
|
|
"macros",
|
|
|
|
"debug-print",
|
|
|
|
"runtime-tokio-native-tls",
|
|
|
|
"sqlx-sqlite",
|
|
|
|
"with-chrono",
|
|
|
|
]
|
|
|
|
default-features = false
|
|
|
|
|
2025-04-27 10:04:04 +09:00
|
|
|
[workspace.package]
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2024"
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/fluo10/dpts"
|
|
|
|
|