Skip to content

Commit c3da068

Browse files
committed
chore(deps): make shlex non-optional
1 parent afc76aa commit c3da068

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ tokio = { version = "1", features = ["full"] }
2323
cli-table = "0.5.0"
2424
tracing = "0.1.41"
2525
tracing-subscriber = "0.3.20"
26+
shlex = { version = "1.3.0" }
2627

2728
# Optional dependencies
2829
bdk_bitcoind_rpc = { version = "0.21.0", features = ["std"], optional = true }
2930
bdk_electrum = { version = "0.23.0", optional = true }
3031
bdk_esplora = { version = "0.22.1", features = ["async-https", "tokio"], optional = true }
3132
bdk_kyoto = { version = "0.15.1", optional = true }
3233
bdk_redb = { version = "0.1.0", optional = true }
33-
shlex = { version = "1.3.0", optional = true }
3434
payjoin = { version = "1.0.0-rc.1", features = ["v1", "v2", "io", "_test-utils"], optional = true}
3535
reqwest = { version = "0.12.23", default-features = false, optional = true }
3636
url = { version = "2.5.4", optional = true }
@@ -39,7 +39,7 @@ url = { version = "2.5.4", optional = true }
3939
default = ["repl", "sqlite"]
4040

4141
# To use the app in a REPL mode
42-
repl = ["shlex"]
42+
repl = []
4343

4444
# Available database options
4545
sqlite = ["bdk_wallet/rusqlite"]
@@ -61,5 +61,3 @@ verify = []
6161
# Compile policies
6262
compiler = []
6363

64-
[dev-dependencies]
65-
shlex = "1.3.0"

0 commit comments

Comments
 (0)