-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
authors = ["adeoye adefemi <adefemiadeoye@yahoo.com>"]
description = "A set of extensible tools to accelerate software development"
edition = "2021"
license = "Apache-2.0"
name = "toolbox"
version = "1.1.5"
[workspace]
members = ["crates/*"]
[lib]
name = "lib_toolbox"
path = "src/lib.rs"
[[bin]]
name = "tb"
path = "src/main.rs"
[dependencies]
chrono = "0.4.40"
clap = {version = "4.5.32", features = ["cargo", "unstable-doc"]}
config = "0.15.19"
confy = "2.0.0"
console = "0.15.11"
dialoguer = {version = "0.10.4", features = ["fuzzy-select", "completion", "editor"]}
dirs = "5.0.1"
include_dir = "0.7.4"
lazy_static = "1.5.0"
log = "0.4.29"
migration = {path = "crates/migration"}
once_cell = "1.21.3"
ribir = "0.3.0"
sea-orm = {version = "1.1.19", features = ["sqlx-sqlite", "runtime-tokio-rustls", "macros", "debug-print", "with-chrono"]}
serde = {version = "1.0.219", features = ["derive"]}
serde_json = "1.0.145"
thiserror = "2.0.12"
tokio = { version = "1.48.0", features = ["full"] }
ulid = {version = "1.2.1", features = ["serde"]}
url = "2.5.7"