-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (35 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "romer"
version = "0.1.0"
authors = ["John Cantrell <[email protected]>"]
homepage = "https://cequals.xyz"
license = "MIT OR Apache-2.0"
edition = "2021"
description = "A ready-to-go lightning payments solution."
repository = "https://github.com/cequals/romer.git"
readme = "README.md"
keywords = ["bitcoin", "lightning"]
categories = ["cryptography::cryptocurrencies"]
[lib]
crate-type = ["lib", "staticlib", "cdylib"]
name = "romer"
[profile.release-smaller]
inherits = "release"
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic
[features]
default = []
[dependencies]
ldk-node = "0.3.0"
libc = "0.2"
uniffi = { version = "0.26.0", features = ["build"], optional = true }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winbase"] }
[build-dependencies]
uniffi = { version = "0.26.0", features = ["build"], optional = true }
[profile.release]
panic = "abort"
[profile.dev]
panic = "abort"