-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
32 lines (29 loc) · 988 Bytes
/
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
[package]
name = "mithril-persistence"
version = "0.2.41"
description = "Common types, interfaces, and utilities to persist data for Mithril nodes."
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
[dependencies]
anyhow = "1.0.94"
async-trait = "0.1.83"
chrono = { version = "0.4.39", features = ["serde"] }
hex = "0.4.3"
mithril-common = { path = "../../mithril-common", features = ["fs"] }
semver = "1.0.23"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
sha2 = "0.10.8"
slog = "2.7.0"
sqlite = { version = "0.36.1", features = ["bundled"] }
thiserror = "2.0.6"
tokio = { version = "1.42.0", features = ["sync"] }
[dev-dependencies]
mithril-common = { path = "../../mithril-common", features = ["test_tools"] }
mockall = "0.13.1"
tokio = { version = "1.42.0", features = ["macros", "time"] }