Cargo.toml (416B)
1 [package] 2 name = "lnsocket" 3 version = "0.1.0" 4 repository = "https://github.com/jb55/lnsocket" 5 readme = "README.md" 6 build = "build.rs" 7 edition = "2018" 8 9 [lib] 10 name = "lnsocket" 11 path = "rust/lib.rs" 12 test = true 13 crate-type = ["lib"] 14 15 [dependencies] 16 libc = "0.2" 17 ffi_helpers = "0.3.0" 18 19 [build-dependencies] 20 cc = { version = "1.0", features = ["parallel"] } 21 pkg-config = "0.3" 22 bindgen = "0.60.0" 23 syntex_syntax = "0.59.1"