diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2021-11-28 13:07:03 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-28 13:07:03 -0500 |
| commit | cc83ad39ce3e8186c8785d47fa4801317c8fac4a (patch) | |
| tree | 7910684a15a0c33992c311b4fb94f9b323f3a7ee /Cargo.lock | |
| parent | 96d02deed626f391be0df30b9b08b7ba141db388 (diff) | |
refactor: add deno_fetch::Options for init (#12904)
deno_fetch::init has a lot of parameters and generic on two types
that keeps expanding over time. This refactor adds deno_fetch::Options
struct for more clearly defining the various parameters.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 9c6a22cd5..f9b235790 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -805,6 +805,7 @@ dependencies = [ "data-url", "deno_core", "deno_tls", + "dyn-clone", "http", "reqwest", "serde", @@ -1159,6 +1160,12 @@ dependencies = [ ] [[package]] +name = "dyn-clone" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee2626afccd7561a06cf1367e2950c4718ea04565e20fb5029b6c7d8ad09abcf" + +[[package]] name = "ecdsa" version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" |
