rust-lightning/lightning-persister/Cargo.toml
Valentine Wallace a88dfbfcca
Fix Windows persistence
Windows started giving 'Access is denied' errors after
a few rounds of persistence. This seems to fix it.
2021-02-19 15:00:43 -05:00

23 lines
588 B
TOML

[package]
name = "lightning-persister"
version = "0.0.1"
authors = ["Valentine Wallace", "Matt Corallo"]
license = "Apache-2.0"
description = """
Utilities to manage channel data persistence and retrieval.
"""
[dependencies]
bitcoin = "0.24"
lightning = { version = "0.0.12", path = "../lightning" }
libc = "0.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winbase"] }
[dev-dependencies.bitcoin]
version = "0.24"
features = ["bitcoinconsensus"]
[dev-dependencies]
lightning = { version = "0.0.12", path = "../lightning", features = ["_test_utils"] }