Skip to content

Commit 826cf77

Browse files
authored
Merge pull request #209 from thomaseizinger/toml-dprint-plugin
Use official toml dprint plugin
2 parents bfe49c2 + fcf353c commit 826cf77

File tree

6 files changed

+34
-34
lines changed

6 files changed

+34
-34
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace]
22
members = [
3-
"bobtimus",
4-
"coin_selection",
5-
"estimate_transaction_size",
6-
"extension/wallet",
3+
"bobtimus",
4+
"coin_selection",
5+
"estimate_transaction_size",
6+
"extension/wallet",
77
]

bobtimus/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
[package]
22
name = "bobtimus"
33
version = "0.1.0"
4-
authors = [ "CoBloX Team <[email protected]>" ]
4+
authors = ["CoBloX Team <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
88
anyhow = "1"
99
async-trait = "0.1"
1010
baru = "0.1"
1111
bitcoin_hashes = "0.9.0"
12-
diesel = { version = "1.4", features = [ "sqlite" ] }
12+
diesel = { version = "1.4", features = ["sqlite"] }
1313
diesel_migrations = "1.4"
1414
directories = "3.0"
15-
elements = { version = "0.17", features = [ "serde-feature" ] }
15+
elements = { version = "0.17", features = ["serde-feature"] }
1616
elements-harness = { git = "https://github.com/comit-network/elements-harness" }
1717
futures = { version = "0.3", default-features = false }
1818
hex = "0.4"
1919
hmac = "0.10"
20-
http-api-problem = { version = "0.21", features = [ "warp" ] }
21-
jsonrpc_client = { version = "0.6", features = [ "reqwest" ] }
20+
http-api-problem = { version = "0.21", features = ["warp"] }
21+
jsonrpc_client = { version = "0.6", features = ["reqwest"] }
2222
log = "0.4"
2323
mime_guess = "2.0.3"
2424
reqwest = "0.11"
2525
rust-embed = "5.7.0"
26-
rust_decimal = { version = "1.15", features = [ "serde-float" ] }
26+
rust_decimal = { version = "1.15", features = ["serde-float"] }
2727
rust_decimal_macros = "1.15"
28-
serde = { version = "1", features = [ "derive" ] }
28+
serde = { version = "1", features = ["derive"] }
2929
serde_json = "1"
3030
sha2 = "0.9"
3131
structopt = "0.3"
3232
tempfile = "3.2"
33-
tokio = { version = "1", features = [ "macros", "rt-multi-thread" ] }
34-
tokio-tungstenite = { version = "0.13", features = [ "tls" ] }
33+
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
34+
tokio-tungstenite = { version = "0.13", features = ["tls"] }
3535
tracing = "0.1"
36-
tracing-subscriber = { version = "0.2", default-features = false, features = [ "env-filter", "fmt", "json" ] }
37-
warp = { version = "0.3", default-features = false, features = [ "tls" ] }
36+
tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "fmt", "json"] }
37+
warp = { version = "0.3", default-features = false, features = ["tls"] }
3838

3939
[dev-dependencies]
4040
testcontainers = "0.12"
4141

4242
[features]
43-
default = [ ]
44-
faucet = [ ]
43+
default = []
44+
faucet = []

coin_selection/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "coin_selection"
33
version = "0.1.0"
4-
authors = [ "CoBloX Team <[email protected]>" ]
4+
authors = ["CoBloX Team <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]

dprint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"plugins": [
2222
"https://plugins.dprint.dev/markdown-0.4.1.wasm",
2323
"https://plugins.dprint.dev/rustfmt-0.3.0.wasm",
24-
"https://github.com/thomaseizinger/dprint-plugin-cargo-toml/releases/download/0.1.0/cargo-toml-0.1.0.wasm",
24+
"https://plugins.dprint.dev/toml-0.4.0.wasm",
2525
"https://plugins.dprint.dev/typescript-0.35.0.wasm",
2626
"https://plugins.dprint.dev/json-0.7.2.wasm"
2727
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
22
name = "estimate_transaction_size"
33
version = "0.1.0"
4-
authors = [ "CoBloX Team <[email protected]>" ]
4+
authors = ["CoBloX Team <[email protected]>"]
55
edition = "2018"

extension/wallet/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
[package]
22
name = "wallet"
33
version = "0.1.0"
4-
authors = [ "CoBloX Team <[email protected]>" ]
4+
authors = ["CoBloX Team <[email protected]>"]
55
edition = "2018"
66

77
[lib]
8-
crate-type = [ "cdylib", "rlib" ]
8+
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
default = [ "console_error_panic_hook" ]
11+
default = ["console_error_panic_hook"]
1212

1313
[dependencies]
14-
aes-gcm-siv = { version = "0.9", features = [ "std" ] }
14+
aes-gcm-siv = { version = "0.9", features = ["std"] }
1515
anyhow = "1"
1616
baru = "0.1"
1717
bdk = { version = "0.4", default-features = false }
18-
bip32 = { version = "0.2", features = [ "secp256k1-ffi", "bip39" ], default-features = false }
18+
bip32 = { version = "0.2", features = ["secp256k1-ffi", "bip39"], default-features = false }
1919
coin_selection = { path = "../../coin_selection" }
2020
conquer-once = "0.3"
2121
console_error_panic_hook = { version = "0.1.6", optional = true }
22-
elements = { version = "0.17", features = [ "serde-feature" ] }
22+
elements = { version = "0.17", features = ["serde-feature"] }
2323
estimate_transaction_size = { path = "../../estimate_transaction_size" }
2424
futures = "0.3"
25-
getrandom = { version = "0.2", features = [ "wasm-bindgen", "js" ] }
25+
getrandom = { version = "0.2", features = ["wasm-bindgen", "js"] }
2626
hex = "0.4"
27-
hkdf = { version = "0.10", features = [ "std" ] }
27+
hkdf = { version = "0.10", features = ["std"] }
2828
itertools = "0.10"
2929
js-sys = "0.3"
3030
log = "0.4"
31-
rand = { version = "0.6", features = [ "wasm-bindgen" ] }
32-
rand_core = { version = "0.5", features = [ "std" ] }
33-
reqwest = { version = "0.11", default-features = false, features = [ "rustls", "json" ] }
31+
rand = { version = "0.6", features = ["wasm-bindgen"] }
32+
rand_core = { version = "0.5", features = ["std"] }
33+
reqwest = { version = "0.11", default-features = false, features = ["rustls", "json"] }
3434
rust_decimal = "1"
3535
scrypt = { version = "0.5" }
36-
serde = { version = "1", features = [ "derive" ] }
36+
serde = { version = "1", features = ["derive"] }
3737
serde_json = "1"
3838
sha2 = "0.9"
3939
thiserror = "1"
40-
wasm-bindgen = { version = "0.2", features = [ "serde-serialize" ] }
40+
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
4141
wasm-bindgen-futures = "0.4"
4242
wasm-logger = "0.2"
43-
web-sys = { version = "0.3", features = [ "Window", "Storage", "Cache", "CacheStorage", "StorageEvent" ] }
43+
web-sys = { version = "0.3", features = ["Window", "Storage", "Cache", "CacheStorage", "StorageEvent"] }
4444

4545
[dev-dependencies]
4646
wasm-bindgen-test = "0.3.13"

0 commit comments

Comments
 (0)