-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (69 loc) · 2.18 KB
/
Copy pathCargo.toml
File metadata and controls
83 lines (69 loc) · 2.18 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
77
78
79
80
81
82
83
[workspace]
resolver = "2"
members = [
"crates/*",
"examples/*",
"tests/sword-web",
"tests/sword-socketio",
"tests/sword-grpc",
]
[workspace.metadata.cargo-machete]
ignored = ["prost", "prost-types", "tonic-prost"]
[workspace.package]
version = "0.4.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/sword-web/sword"
homepage = "https://sword-web.github.io"
rust-version = "1.95"
[workspace.dependencies]
sword = { path = "crates/sword", default-features = false }
sword-core = { path = "crates/sword-core", version = "0.4.0" }
sword-macros = { path = "crates/sword-macros", version = "0.4.0" }
sword-layers = { path = "crates/sword-layers", version = "0.4.0" }
sword-web = { path = "crates/sword-web", version = "0.4.0" }
sword-grpc = { path = "crates/sword-grpc", version = "0.4.0" }
sword-socketio = { path = "crates/sword-socketio", version = "0.4.0" }
sword-events = { path = "crates/sword-events", version = "0.4.0" }
tokio = { version = "^1.0", features = ["full"] }
tokio-stream = "0.1.18"
tonic = "0.14.6"
tonic-prost = "0.14.6"
tonic-types = "0.14.6"
tonic-prost-build = "0.14.6"
tonic-async-interceptor = "0.14.1"
tonic-health = "0.14.6"
tonic-reflection = "0.14.6"
serde = { version = "1.0.219", features = ["derive"] }
axum = "0.8.7"
axum_responses = "0.5.5"
tower = "0.5.2"
http = "1.2.0"
async-stream = "0.3.6"
serde_json = "1.0.140"
regex-lite = "0.1.7"
thiserror = "2.0.17"
uuid = { version = "1.18.0", features = ["v4", "serde"] }
validator = { version = "0.21.0", features = ["derive"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt", "json", "chrono"] }
inventory = "0.3.21"
parking_lot = "0.12.5"
heck = "0.5"
bon = "3.9.1"
bytes = "1.10.1"
http-body-util = "0.1.3"
serde_urlencoded = "0.7.1"
form_urlencoded = "1.2.2"
mime = "0.3.17"
thisconfig = { version = "0.3.0", features = ["byte-unit", "time-unit"] }
console = "0.15.8"
futures-lite = "2.6"
subsecond = "0.7.2"
dioxus-devtools = { version = "0.7.2", features = ["serve"] }
tower-http = "0.7.0"
axum-test = "21.0.0"
sqlx = { version = "0.9.0", features = ["postgres", "runtime-tokio", "uuid"] }
dotenv = "0.15.0"
bcrypt = "0.19.3"
chrono = "0.4.42"