diff options
| author | Matt Mastracci <matthew@mastracci.com> | 2023-11-10 11:15:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-10 18:15:09 +0000 |
| commit | 882c54d5c407affb26012d81fea67cccfc214bb7 (patch) | |
| tree | 7157d8386bd6d44e8b33be6e680f5d8fa5ecb693 /Cargo.toml | |
| parent | 68607b593fc91df2844540d97c8aa807ccf01464 (diff) | |
chore: disable default features for denokv_sqlite (#21155)
Fix for https://github.com/Homebrew/homebrew-core/pull/153128
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index ad8f195e0..bf02f95ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,8 @@ deno_lockfile = "0.17.2" deno_media_type = { version = "0.1.1", features = ["module_specifier"] } denokv_proto = "0.2.1" -denokv_sqlite = "0.2.1" +# denokv_sqlite brings in bundled sqlite if we don't disable the default features +denokv_sqlite = { default-features = false, version = "0.2.1" } denokv_remote = "0.2.3" # exts |
