1[package] 2name = "pkg_a" 3version = "0.1.0" 4edition = "2018" 5 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8[dependencies] 9anyhow = "1.0.44" 10reqwest = { default-features = false, version = "0.11.4", features = ["blocking", "json", "rustls-tls"] } 11 12[dev-dependencies] 13# Pin to a version of `httmock` that supports `rustls`. 14# See https://github.com/alexliesenfeld/httpmock/pull/72 15httpmock = { default-features = false, features = ["rustls"], git = "https://github.com/alexliesenfeld/httpmock.git", rev = "9ecf35255ee154986bc36d06473f1fa088586ad9" } 16 17[patch.crates-io] 18# See httmock comment. 19isahc = { git = "https://github.com/sagebind/isahc.git", rev = "096aff7b13f4ff5bb474fdc27bc30b297a2968f6" } 20