Skip to content

Commit dcc9d0f

Browse files
committed
Merge #369: Clean up the manifest
229db94 Enable serde before dependencies (Tobin C. Harding) e43ebd5 Use 'normal' dependency format (Tobin C. Harding) 58911ad Improve manifest metadata (Tobin C. Harding) Pull request description: Do trivial clean up to the manifest file. Warning: Totally non-urgent, possibly annoyingly trivial. ACKs for top commit: sanket1729: ACK 229db94 Tree-SHA512: d96e0d33f4b5fd9faf03138f944bbea35c7ff5eeff3a567a144e4e0b06979c1a451970a58b2c19f0cf423e4410d5a8dec22eb6c3a3f042f48269071f35fcd105
2 parents 1b4c127 + 229db94 commit dcc9d0f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22
name = "miniscript"
33
version = "7.0.0"
44
authors = ["Andrew Poelstra <[email protected]>, Sanket Kanjalkar <[email protected]>"]
5-
repository = "https://github.com/apoelstra/miniscript"
6-
description = "Miniscript: a subset of Bitcoin Script designed for analysis"
75
license = "CC0-1.0"
6+
homepage = "https://github.com/rust-bitcoin/rust-miniscript/"
7+
repository = "https://github.com/rust-bitcoin/rust-miniscript/"
8+
description = "Miniscript: a subset of Bitcoin Script designed for analysis"
9+
keywords = [ "crypto", "bitcoin"]
10+
readme = "README.md"
811

912
[features]
1013
compiler = []
1114
trace = []
1215
unstable = []
1316
default = []
14-
use-serde = ["bitcoin/use-serde", "serde"]
17+
use-serde = ["serde", "bitcoin/use-serde"]
1518
rand = ["bitcoin/rand"]
1619

1720
[dependencies]
1821
bitcoin = "0.28.0"
19-
20-
[dependencies.serde]
21-
version = "1.0"
22-
optional = true
22+
serde = { version = "1.0", optional = true}
2323

2424
[[example]]
2525
name = "htlc"

0 commit comments

Comments
 (0)