-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (41 loc) · 1.44 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
[package]
name = "rebased-stardust-indexer"
version = "0.4.0"
edition = "2021"
[dependencies]
anyhow = "1.0.93"
axum = "0.7.9"
bcs = "0.1.6"
clap = { version = "4.5.21", features = ["derive", "env"] }
derive_more = { version = "1.0.0", features = ["into", "from"] }
diesel = { version = "2.2.0", features = [
"sqlite",
"returning_clauses_for_sqlite_3_35",
"r2d2",
] }
diesel_migrations = { version = "2.2.0", features = ["sqlite"] }
# build libsqlite3 as part of the build process
# uncomment this line if you run into setup issues
# libsqlite3-sys = { version = "0.30", features = ["bundled"] }
dotenvy = "0.15"
http = "1.2.0"
iota-types = { git = "https://github.com/iotaledger/iota.git", tag = "v0.8.1-rc", version = "0.8.1-rc" }
iota-data-ingestion-core = { git = "https://github.com/iotaledger/iota.git", tag = "v0.8.1-rc", version = "0.8.1-rc" }
num_enum = "0.7.3"
prometheus = "0.13.4"
serde = "1.0.215"
tempfile = "3.14.0"
thiserror = "2.0.3"
tokio = { version = "1.39.2", features = ["rt-multi-thread", "signal"] }
tokio-util = "0.7.13"
tower-http = { version = "0.6.2", features = ["cors"] }
tracing = { version = "0.1.41", features = ["attributes"] }
tracing-subscriber = "0.3.19"
url = "2.5.4"
utoipa = "5.2.0"
utoipa-swagger-ui = { version = "8.0.3", features = ["axum"] }
[dev-dependencies]
iota-types = { git = "https://github.com/iotaledger/iota.git", tag = "v0.8.1-rc", version = "0.8.1-rc", features = [
"test-utils",
] }
reqwest = "0.12.12"