[package] name = "bs-gl-client" version = "0.2.0" edition = "2018" authors = [ "Christian Decker", "The Greenlight Team" ] description = "Client library for Greenlight, and basis for language bindings." repository = "https://github.com/Blockstream/greenlight" license = "MIT" [features] default = ["permissive", "export"] permissive = [] export = ["chacha20poly1305", "secp256k1"] [dependencies] anyhow = "1.0.82" base64 = "^0.21" bech32 = "0.9.1" bytes = "1.6.0" hex = "0.4.3" http = "0.2" http-body = "^0.4" log = "^0.4" pin-project = "1.1.5" prost = "0.11" prost-derive = "0.11" reqwest = {version="^0.11", features=["json", "rustls-tls-native-roots"], default-features = false} ring = "~0.16.20" runeauth = "0.1" rustls-pemfile = "1.0.4" sha256 = "1.5.0" tokio = { version = "1", features = ["full"] } tonic = { version = "^0.8", features = ["tls", "transport"] } tower = { version = "0.4" } rcgen = { version = "0.10.0", features = ["pem", "x509-parser"]} tempfile = "3.10.1" url = "2.5.0" serde = { version = "1", features = [ "derive" ] } vls-core = { workspace = true } vls-persist = { workspace = true } vls-protocol-signer = { workspace = true } vls-protocol = { workspace = true } serde_json = "^1.0" thiserror = "1" cln-grpc = { workspace = true } chacha20poly1305 = { version = "0.10.1", optional = true } # serde_bolt==0.3.5 broke the semantic versioning, hence we try to # prevent it from being picked in the resolution. serde_bolt = "=0.3.4" secp256k1 = { version = "0.26.0", optional = true } mockall = "0.11.4" futures = "0.3.30" async-trait = "0.1.80" rand = "0.8.5" uuid = {version = "1.8.0", features=["serde"]} time = { version = "0.3", features = ["macros"] } x509-certificate = "0.23.1" [build-dependencies] tonic-build = "^0.8" serde = { version = "1", features = [ "derive" ] }