[package] name = "lsp-primitives" description = "Primitives to implement an Lightning Service Provider and clients" version = "0.1.0" edition = "2021" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.75" base64 = "0.21.5" bitcoin = { version = "0.31.0", features = ["serde"] } hex = "0.4.3" rand = "0.8.5" secp256k1 = "0.28.0" serde = {version = "1.0.192", features=["derive"]} serde_json = "1.0.108" serde_path_to_error = "0.1.14" time = { version = "0.3.30", features = ["macros", "parsing", "formatting"] } uuid = { version = "1.5.0", features = ["serde"] } [dev-dependencies] secp256k1 = { version = "0.28.0", features = ["rand"] } serde_json = "1.0.108"