Skip to content

Commit

Permalink
Remove unnecessary deps
Browse files Browse the repository at this point in the history
  • Loading branch information
yukibtc committed Dec 24, 2024
1 parent e5f308e commit da7db6e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ rust-version = "1.64.0" # TODO: check MSRV
js-sys = { version = "0.3", default-features = false }
wasm-bindgen = { version = "0.2", default-features = false }
wasm-bindgen-futures = { version = "0.4", default-features = false }
webln = { path = "./webln", default-features = false }

[profile.release]
lto = true
codegen-units = 1
panic = "abort"
panic = "abort"
3 changes: 1 addition & 2 deletions webln-js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ default = []

[dependencies]
console_error_panic_hook = { version = "0.1", optional = true }
js-sys.workspace = true
webln = { version = "0.1", path = "../webln", default-features = false }
webln = { workspace = true, default-features = false }
wasm-bindgen.workspace = true
wasm-bindgen-futures.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion webln/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webln"
version = "0.1.0"
version = "0.3.0"
edition = "2021"
description = "WebLN - Lightning Web Standard"
authors.workspace = true
Expand Down

0 comments on commit da7db6e

Please sign in to comment.