-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
62 lines (49 loc) · 1.37 KB
/
Cargo.toml
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
[workspace]
members = [
"luna-types",
"luna-orm",
"luna-orm-trait",
"luna-orm-macro",
"luna-orm-dynamic",
"luna-orm-axum",
"examples/*"
, "luna-orm-dynamic", "luna-types"]
default-members = [
"luna-orm"
]
[workspace.package]
version = "0.3.6"
rust-version = "1.56"
[workspace.dependencies]
sqlx = {version = "0.7.4", features = ["mysql", "sqlite", "any"]}
sqlx-core = {version = "0.7.4"}
tokio = {version = "1.34.0", features = ["full"]}
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"
axum = {version = "0.7.4"}
axum-macros = {version = "0.4.1"}
http-body-util = {version = "0.1.0"}
chrono = { version = "0.4.38", features = ["serde"]}
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 = "1.0"}
path-absolutize = { version = "3.1.1"}
typetag = { version= "0.2"}
nom = { version = "7.1.3" }
runtime-fmt = { version = "0.4.1"}
[profile.test]
test-threads = 1