-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathCargo.toml
30 lines (27 loc) · 1002 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
[package]
name = "mithril-persistence"
version = "0.2.50"
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.97"
async-trait = "0.1.88"
chrono = { version = "0.4.40", features = ["serde"] }
mithril-common = { path = "../../mithril-common", features = ["fs"] }
mithril-resource-pool = { path = "../mithril-resource-pool" }
semver = "1.0.26"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
slog = "2.7.0"
sqlite = { version = "0.36.2", features = ["bundled"] }
thiserror = "2.0.12"
tokio = { version = "1.44.1", features = ["sync"] }
[dev-dependencies]
mithril-common = { path = "../../mithril-common", features = ["test_tools"] }
tokio = { version = "1.44.1", features = ["macros", "time"] }