diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-07-09 17:06:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-09 17:06:50 -0400 |
| commit | e5c3c21e95bd6c8cfb0d26de8f79684709d64e81 (patch) | |
| tree | 978ca4c454bd5d198e0cc5554d86779c201b1c6b /Cargo.toml | |
| parent | 3674f4536b27f82bbf7a4a9334255976deddf29e (diff) | |
feat(workspace): support object config (#24483)
This adds object config for the workspace config:
```json
{
"workspace": {
"members": ["./member-1", "./member-2"]
}
}
```
This is a more verbose version of `"workspace": ["./member-1",
"./member-2"]`. Although we don't need it at the moment, it makes the
naming of `"workspace"` more clear and leaves the object open for more
config in the future.
Closes https://github.com/denoland/deno/issues/24456
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index b3f76a1c1..f7c752fb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -101,7 +101,7 @@ console_static_text = "=0.8.1" data-encoding = "2.3.3" data-url = "=0.3.0" deno_cache_dir = "=0.10.0" -deno_config = { version = "=0.20.2", default-features = false } +deno_config = { version = "=0.20.4", default-features = false } dlopen2 = "0.6.1" ecb = "=0.1.2" elliptic-curve = { version = "0.13.4", features = ["alloc", "arithmetic", "ecdh", "std", "pem"] } |
