-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
107 lines (101 loc) · 2.77 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[profile.release]
debug = 1
[workspace]
members = [
"modules/base",
"modules/cloud",
"modules/image",
"modules/migration",
"modules/omnikit",
"modules/rocketpack",
"modules/testkit",
]
resolver = "3"
[workspace.package]
edition = "2021"
authors = ["Lyrise <[email protected]>"]
[workspace.dependencies]
omnius-core-base = { path = "./modules/base" }
omnius-core-cloud = { path = "./modules/cloud", features = ["aws"] }
omnius-core-image = { path = "./modules/image" }
omnius-core-migration = { path = "./modules/migration", features = [
"postgres",
] }
omnius-core-omnikit = { path = "./modules/omnikit" }
omnius-core-rocketpack = { path = "./modules/rocketpack" }
omnius-core-testkit = { path = "./modules/testkit" }
aws-config = "1.5.8"
aws-sdk-secretsmanager = "1.49.0"
aws-sdk-s3 = "1.54.0"
aws-sdk-sqs = "1.45.0"
aws-sdk-sesv2 = "1.49.0"
gcloud-sdk = { version = "0.25.7", features = [
"google-cloud-secretmanager-v1",
] }
rand = "0.8.5"
rand_chacha = "0.3.1"
anyhow = { version = "1.0.95", features = ["backtrace"] }
async-trait = "0.1.83"
axum = { version = "0.7.9", features = ["macros", "headers"] }
axum-extra = "0.9.4"
chrono = "0.4.39"
config = "0.14.1"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0.134"
testcontainers = "0.23.1"
tokio = { version = "1.42.0", features = ["full"] }
tokio-postgres = { version = "0.7.12", features = ["with-chrono-0_4"] }
tokio-util = { version = "0.7.13", features = ["full"] }
tokio-stream = "0.1.17"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }
sqlx = { version = "0.8.2", features = [
"postgres",
"chrono",
"json",
"macros",
"runtime-tokio-rustls",
] }
tower-http = { version = "0.6.1", features = ["cors"] }
utoipa = "4.2.3"
utoipa-swagger-ui = { version = "7.1.0", features = ["axum"] }
ring = "0.17.8"
hex = "0.4.3"
urlencoding = "2.1.3"
axum-aws-lambda = "0.8.0"
lambda_http = "0.13"
hyper = "1.5.2"
tower = "0.5.2"
thiserror = "1.0.69"
jsonwebtoken = "9.3.0"
validator = { version = "0.18.1", features = ["derive"] }
headers = "0.4.0"
once_cell = "1.20.2"
kamadak-exif = "0.5.5"
serial_test = "3.2.0"
proc-macro2 = "1.0.87"
reqwest = { version = "0.12.11", features = ["json"] }
testresult = "0.4.1"
base64 = "0.22.1"
ciborium = "0.2.2"
bitflags = { version = "2.6.0", features = ["serde"] }
tempfile = "3.14.0"
crc = "3.2.1"
sha3 = "0.10.8"
rand_core = "0.6.4"
nom = "7.1.3"
fast-socks5 = "0.9.6"
futures = "0.3.31"
futures-util = "0.3.30"
local-ip-address = "0.6.3"
pin-utils = "0.1.0"
hkdf = "0.12.4"
aes-gcm = "0.10.3"
parking_lot = "0.12.3"
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
ed25519-dalek = { version = "2.1.1", features = [
"rand_core",
"serde",
"pkcs8",
] }