-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
85 lines (80 loc) · 2.34 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
[workspace]
#resolver = "2"
members = [
"backend/basic",
# "backend/spi/*",
"backend/spi/spi-cache",
"backend/spi/spi-search",
"backend/spi/spi-graph",
"backend/spi/spi-kv",
"backend/spi/spi-log",
"backend/spi/spi-object",
"backend/spi/spi-plugin",
"backend/spi/spi-stats",
"backend/spi/spi-reldb",
"backend/gateways/spacegate-plugins",
"backend/middlewares/*",
"backend/supports/iam",
"backend/supports/auth",
"frontend/enhance-wasm",
"backend/supports/reach",
"backend/services/*",
"frontend/sdks/*",
"frontend/clients/*",
]
resolver = "2"
[workspace.package]
version = "0.2.0"
authors = [
"gudaoxuri <[email protected]>",
"hermitCode <[email protected]>",
"RWDai <[email protected]>",
]
homepage = "https://bios.idealworld.group"
documentation = "https://bios.idealworld.group"
repository = "https://github.com/ideal-world/bios"
license = "Apache-2.0"
edition = "2021"
readme = "README.md"
description = "An embeddable message queue system"
publish = true
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
panic = "abort"
strip = true
[workspace.dependencies]
# basic
async-recursion = { version = "1.0.4" }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
async-trait = { version = "0.1" }
lazy_static = { version = "1" }
itertools = { version = "0.13" }
fancy-regex = { version = "0" }
run_script = { version = "0.10" }
rust_decimal = { version = "1" }
rust_decimal_macros = { version = "1" }
testcontainers-modules = { version = "0.11", features = ["redis"] }
strum = { version = "0.26", features = ["derive"] }
# tardis
tardis = { version = "0.1.0-rc.17" }
# tardis = { version = "0.2.0", path = "../tardis/tardis" }
# tardis = { git = "https://github.com/ideal-world/tardis.git", rev = "9cc9b3e" }
# asteroid-mq = { git = "https://github.com/4t145/asteroid-mq.git", rev = "d59c64d" }
asteroid-mq = { git = "https://github.com/4t145/asteroid-mq.git", rev = "8be6be5" }
# asteroid-mq = { version = "0.1.0-alpha.5" }
asteroid-mq-sdk = { git = "https://github.com/4t145/asteroid-mq.git", rev = "8be6be5" }
# asteroid-mq-sdk = { version = "0.1.0-alpha.5" }
#spacegate
# spacegate-shell = { version = "0.2.0", path = "../spacegate/crates/shell", features = [
# "cache",
# "k8s",
# "ext-axum",
# ] }
spacegate-shell = { version = "0.2.0-alpha.2", features = [
"cache",
"k8s",
"ext-axum",
] }