Skip to content

Commit 4233b71

Browse files
committed
chore: adjustments from PR review
1 parent a33b9d8 commit 4233b71

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mithril-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ rustls-tls-native-roots = ["reqwest/rustls-tls-native-roots"]
112112
# Support compressed traffic with `reqwest`
113113
enable-http-compression = ["reqwest/gzip", "reqwest/zstd", "reqwest/deflate", "reqwest/brotli"]
114114

115-
# Enables `rug-backend` features for `mithril-common` dependency
115+
# Enables usage of `rug` numerical backend in `mithril-stm` (dependency of `mithril-common`).
116116
rug-backend = ["mithril-common/rug-backend"]
117-
# Enables `num-integer-backend` features for `mithril-common` dependency
117+
# Enables usage of `num-integer` numerical backend in `mithril-stm` (dependency of `mithril-common`)
118118
# by default it's `rug-backend`
119119
num-integer-backend = ["mithril-common/num-integer-backend"]
120120

mithril-client/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@
8282
//! - **rustls-tls-native-roots**: Enables TLS functionality provided by `rustls`,
8383
//! while using root certificates from the `rustls-native-certs` crate.
8484
//! - **enable-http-compression** *(enabled by default)*: Enables compressed traffic with `reqwest`.
85-
//! - **rug-backend** *(enabled by default)*: Enables `rug-backend` features for `mithril-common` dependency.
86-
//! - **num-integer-backend**: Enables `num-integer-backend` features for `mithril-common` dependency.
85+
//! - **rug-backend** *(enabled by default)*: Enables usage of `rug` numerical backend in `mithril-stm` (dependency of `mithril-common`).
86+
//! - **num-integer-backend**: Enables usage of `num-integer` numerical backend in `mithril-stm` (dependency of `mithril-common`).
8787
8888
macro_rules! cfg_fs {
8989
($($item:item)*) => {

0 commit comments

Comments
 (0)