|
1 | 1 | [package] |
2 | 2 | name = "mithril-client" |
3 | | -version = "0.14.17" |
| 3 | +version = "0.14.18" |
4 | 4 | description = "Mithril client library" |
5 | 5 | authors = { workspace = true } |
6 | 6 | edition = { workspace = true } |
@@ -30,13 +30,13 @@ unstable = [] |
30 | 30 |
|
31 | 31 | # These features are for support of dependent crates only. |
32 | 32 | # They do not change the operation of the main crate. |
33 | | -native-tls = ["reqwest/native-tls"] |
34 | | -native-tls-no-alpn = ["reqwest/native-tls-no-alpn"] |
35 | | -native-tls-vendored = ["reqwest/native-tls-vendored"] |
36 | | -native-tls-vendored-no-alpn = ["reqwest/native-tls-vendored-no-alpn"] |
| 33 | +native-tls = ["mithril-common/native-tls", "reqwest/native-tls"] |
| 34 | +native-tls-no-alpn = ["mithril-common/native-tls", "reqwest/native-tls-no-alpn"] |
| 35 | +native-tls-vendored = ["mithril-common/native-tls", "reqwest/native-tls-vendored"] |
| 36 | +native-tls-vendored-no-alpn = ["mithril-common/native-tls", "reqwest/native-tls-vendored-no-alpn"] |
37 | 37 |
|
38 | | -rustls = ["reqwest/rustls"] |
39 | | -rustls-no-provider = ["reqwest/rustls-no-provider"] |
| 38 | +rustls = ["mithril-common/rustls", "reqwest/rustls"] |
| 39 | +rustls-no-provider = ["mithril-common/rustls", "reqwest/rustls-no-provider"] |
40 | 40 |
|
41 | 41 | # Support compressed traffic with `reqwest` |
42 | 42 | enable-http-compression = ["reqwest/gzip", "reqwest/zstd", "reqwest/deflate", "reqwest/brotli"] |
@@ -64,7 +64,7 @@ flate2 = { version = "1.1.9", optional = true } |
64 | 64 | flume = { version = "0.12.0", optional = true } |
65 | 65 | futures = "0.3.32" |
66 | 66 | mithril-aggregator-client = { path = "../internal/mithril-aggregator-client", version = "0.2.4" } |
67 | | -mithril-common = { path = "../mithril-common", version = "0.7.14", default-features = false } |
| 67 | +mithril-common = { path = "../mithril-common", version = "0.7.15", default-features = false } |
68 | 68 | reqwest = { workspace = true, default-features = false, features = ["charset", "http2", "stream", "system-proxy"] } |
69 | 69 | serde = { workspace = true } |
70 | 70 | serde_json = { workspace = true } |
|
0 commit comments