forked from xmtp/libxmtp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.55 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (50 loc) · 1.55 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
[package]
name = "mls_validation_service"
description = "backend validation service for XMTP"
build = "build.rs"
license.workspace = true
version.workspace = true
rust-version.workspace = true
edition.workspace = true
publish.workspace = true
[lints]
workspace = true
[[bin]] # Bin to run the Validation Service
name = "mls-validation-service"
path = "src/main.rs"
[build-dependencies]
vergen-gix = { workspace = true, features = ["build"] }
[dependencies]
alloy.workspace = true
async-trait.workspace = true
clap = { workspace = true, features = ["env"] }
futures.workspace = true
hex.workspace = true
lru.workspace = true
openmls.workspace = true
openmls_rust_crypto.workspace = true
parking_lot.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["signal", "rt-multi-thread"] }
tonic = { workspace = true, features = ["router", "server"] }
tracing.workspace = true
tracing-subscriber = { workspace = true, features = [
"env-filter",
"ansi",
"json",
] }
warp.workspace = true
xmtp-workspace-hack.workspace = true
xmtp_common.workspace = true
xmtp_configuration.workspace = true
xmtp_cryptography.workspace = true
xmtp_id.workspace = true
xmtp_proto = { workspace = true, features = ["grpc_server_impls"] }
[dev-dependencies]
rand.workspace = true
rstest.workspace = true
xmtp_common = { workspace = true, features = ["test-utils"] }
xmtp_configuration = { workspace = true, features = ["test-utils"] }
xmtp_id = { workspace = true, features = ["test-utils"] }
[features]
test-utils = ["xmtp_id/test-utils", "xmtp_configuration/test-utils"]