forked from Octo-Protocol-org/Octo-Protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 683 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (25 loc) · 683 Bytes
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
[package]
name = "octo-server"
description = "octo service: composes the REST API and the deposit ingest worker into one binary."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
[[bin]]
name = "octo-server"
path = "src/main.rs"
[dependencies]
octo-api.workspace = true
octo-ingest.workspace = true
octo-store.workspace = true
octo-webhooks.workspace = true
octo-wallet-core.workspace = true
octo-resilience.workspace = true
tokio.workspace = true
anyhow.workspace = true
axum.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
dotenvy = "0.15"