Skip to content

Commit 669d18a

Browse files
committed
Update crates versions
1 parent 14076a0 commit 669d18a

File tree

10 files changed

+32
-35
lines changed

10 files changed

+32
-35
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/protocol-demo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithrildemo"
3-
version = "0.1.19"
3+
version = "0.1.20"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
documentation = { workspace = true }

docs/website/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mithril-doc",
3-
"version": "0.1.22",
3+
"version": "0.1.23",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -35,4 +35,4 @@
3535
"last 1 safari version"
3636
]
3737
}
38-
}
38+
}

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-aggregator"
3-
version = "0.3.89"
3+
version = "0.3.90"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-client"
3-
version = "0.3.44"
3+
version = "0.3.45"
44
description = "A Mithril Client"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-common"
3-
version = "0.2.112"
3+
version = "0.2.113"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
documentation = { workspace = true }

mithril-explorer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mithril-explorer",
3-
"version": "0.3.4",
3+
"version": "0.3.5",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -32,4 +32,4 @@
3232
"jest-environment-jsdom": "^29.7.0",
3333
"next-router-mock": "^0.9.9"
3434
}
35-
}
35+
}

mithril-signer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-signer"
3-
version = "0.2.78"
3+
version = "0.2.79"
44
description = "A Mithril Signer"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-stm/Cargo.toml

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "mithril-stm"
3-
version = "0.3.2"
2+
name = "mithril-stm"
3+
version = "0.3.3"
44
edition = { workspace = true }
55
authors = { workspace = true }
66
documentation = { workspace = true }
@@ -9,36 +9,31 @@ license = { workspace = true }
99
repository = { workspace = true }
1010
description = "A Rust implementation of Mithril Stake-based Threshold Multisignatures (STMs)."
1111
categories = ["cryptography"]
12-
include = [
13-
"**/*.rs",
14-
"Cargo.toml",
15-
"README.md",
16-
".gitignore",
17-
]
12+
include = ["**/*.rs", "Cargo.toml", "README.md", ".gitignore"]
1813

1914
[lib]
2015
crate-type = ["lib", "cdylib", "staticlib"]
2116

2217
[dependencies]
23-
blake2 = "0.10.4"
18+
blake2 = "0.10.4"
2419
blst = { version = "0.3.10" }
25-
digest = { version = "0.10.5", features = ["alloc"] }
26-
num-bigint = { version = "0.4.0", optional = true }
20+
digest = { version = "0.10.5", features = ["alloc"] }
21+
num-bigint = { version = "0.4.0", optional = true }
2722
num-rational = { version = "0.4.0", optional = true }
28-
num-traits = { version = "0.2.14", optional = true }
29-
rand_core = "0.6.3"
30-
rayon = "1.5.1"
23+
num-traits = { version = "0.2.14", optional = true }
24+
rand_core = "0.6.3"
25+
rayon = "1.5.1"
3126
rug = { version = "1.14", optional = true }
3227
serde = { version = "1", features = ["rc", "derive"] }
3328
thiserror = "1.0"
3429

3530
[dev-dependencies]
3631
bincode = "1.3.3"
37-
criterion = { version = "0.5.1", features = ["html_reports"] }
32+
criterion = { version = "0.5.1", features = ["html_reports"] }
3833
hex = "0.4.3"
39-
num-bigint = "0.4.0"
34+
num-bigint = "0.4.0"
4035
num-rational = "0.4.0"
41-
proptest = "1.0.0"
36+
proptest = "1.0.0"
4237
rand = "0.8"
4338
rand_chacha = "0.3.1"
4439

@@ -59,5 +54,7 @@ harness = false
5954
default = ["rug-backend"]
6055
rug-backend = ["rug/default"]
6156
num-integer-backend = ["num-bigint", "num-rational", "num-traits"]
62-
portable = ["blst/portable"] # portable feature avoids SIGILL crashes on CPUs not supporting Intel ADX instruction set when built on CPUs that support it
57+
portable = [
58+
"blst/portable",
59+
] # portable feature avoids SIGILL crashes on CPUs not supporting Intel ADX instruction set when built on CPUs that support it
6360
benchmark-internals = [] # For benchmarking multi_sig

mithril-test-lab/mithril-end-to-end/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-end-to-end"
3-
version = "0.2.13"
3+
version = "0.2.14"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
documentation = { workspace = true }

0 commit comments

Comments
 (0)