forked from futo-org/polycentric
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 1.19 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (42 loc) · 1.19 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
[workspace]
members = [
"packages/rs-common",
"packages/rs-core",
"services/server",
"services/server/tests",
"services/moderation",
"services/notifications",
"services/common/*",
"tools/identity",
]
exclude = ["legacy/"]
resolver = "2"
[workspace.dependencies]
# Internal crates
polycentric-common = { path = "packages/rs-common" }
# Async runtime / service frameworks
tokio = { version = "1.50.0" }
uniffi = { version = "=0.31.0", features = ["tokio"] }
rdkafka = { version = "0.39" }
sea-orm = { version = "~2.0.0-rc.40" }
sea-orm-migration = { version = "~2.0.0-rc.40" }
# Protobuf / gRPC
prost = "0.14"
prost-types = "0.14"
prost-build = "0.14"
tonic = { version = "0.14", default-features = false, features = ["codegen"] }
tonic-prost = "0.14"
# Crypto / hashing
ed25519-dalek = "2.2.0"
sha2 = "0.11"
hmac-sha256 = "1.1.12"
getrandom = "0.4"
# Misc shared
thiserror = "2.0"
chrono = { version = "0.4", features = ["serde"] }
log = "0.4"
# Pinned: 0.3.48 adds a `From` impl on an associated-type projection that
# fails coherence (E0119) in sea-query and aws-smithy-types. Unpin once those
# crates ship releases that compile against it.
time = "=0.3.47"
base64 = "0.22.1"