Add `FilesystemStore`
[rust-lightning] / lightning-persister / Cargo.toml
1 [package]
2 name = "lightning-persister"
3 version = "0.0.116"
4 authors = ["Valentine Wallace", "Matt Corallo"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/lightningdevkit/rust-lightning"
7 description = """
8 Utilities for LDK data persistence and retrieval.
9 """
10 edition = "2018"
11
12 [package.metadata.docs.rs]
13 all-features = true
14 rustdoc-args = ["--cfg", "docsrs"]
15
16 [dependencies]
17 bitcoin = "0.29.0"
18 lightning = { version = "0.0.116", path = "../lightning" }
19 libc = "0.2"
20
21 [target.'cfg(windows)'.dependencies]
22 winapi = { version = "0.3", features = ["winbase"] }
23 windows-sys = { version = "0.48.0", default-features = false, features = ["Win32_Storage_FileSystem", "Win32_Foundation"] }
24
25 [target.'cfg(ldk_bench)'.dependencies]
26 criterion = { version = "0.4", optional = true, default-features = false }
27
28 [dev-dependencies]
29 lightning = { version = "0.0.116", path = "../lightning", features = ["_test_utils"] }