forked from thegenius/taitan-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (58 loc) · 1.8 KB
/
Cargo.toml
File metadata and controls
76 lines (58 loc) · 1.8 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[workspace]
members = [
"taitan-orm",
"taitan-orm-macro",
"taitan-orm-trait",
"taitan-orm-parser",
"taitan-orm-tracing",
"taitan-orm-askama",
"examples/*",
"benchmarks"]
resolver = "2"
default-members = [
"taitan-orm-tracing",
"taitan-orm-trait",
"taitan-orm-macro",
"taitan-orm"
]
[workspace.package]
rust-version = "1.86"
version = "0.1.12"
[workspace.dependencies]
# the main dependency, tokio need config to feature
sqlx = {version = "0.8.2", features = ["runtime-tokio", "mysql", "sqlite", "postgres", "bigdecimal", "time", "uuid"]}
tokio = {version = "1.34.0", features = ["full"]}
axum = {version = "0.8.1", features = ["macros"]}
# extend types
time = {version = "0.3.37", features = ["macros", "serde"]}
chrono = { version = "0.4.38", features = ["serde"]}
bigdecimal = { version = "0.4.6", features = ["serde"] }
rust_decimal = { version = "1.37.1", features = ["serde"] }
uuid = { version = "1.11.0", features = ["v4", "serde"] }
# tracing
tracing = {version = "0.1", features = ["max_level_trace", "release_max_level_info"] }
tracing-test = {version = "0.2"}
tracing-subscriber = {version ="0.3.18"}
derive_builder = "0.13.0"
serde = {version = "1.0", features = ["derive"]}
serde_with = { version = "3.4.0" }
serde_regex = "1.1.0"
serde_json = "1.0"
serde_yaml = "0.9.27"
regex = "1.10.3"
http-body-util = {version = "0.1.0"}
tower = { version = "0.4.13", default-features = false, features = ["util"] }
tower-layer = "0.3.2"
tower-service = "0.3"
case = {version = "1.0"}
rust-format = {version = "0.3.4"}
tera = {version = "1.19"}
num = "0.4.1"
num-traits = "0.2.17"
thiserror = {version = "2.0.4"}
path-absolutize = { version = "3.1.1"}
typetag = { version= "0.2"}
nom = { version = "7.0.0" }
runtime-fmt = { version = "0.4.1"}
rinja = "0.3.5"
askama = "0.14.0"