Depend on a specific version of the `supabase-wrappers` project instead of a path based dependency
Chore
Describe the chore
Depend on a specific version of the supabase-wrappers project instead of a path based dependency
Additional context
The path based dependency can stay as it is useful during dev, but we should build against a released version of supabase-wrappers to better dogfood the crate.
Would love to ! Especially that
-- Disable the "wrappers" extension
drop extension if exists wrappers CASCADE;
-- Enable the "wrappers" extension
create extension wrappers with version "0.1.17";
Doesn't work
And would be interesting for projects that need consistency :)
@StanGirard this chore was about updating this line in Cargo.toml to use a specific version instead of a relative path. It wouldn't change anything about how drop/create extension works.
For the error you see, can you check whether select * from pg_available_extensions where name = 'wrappers'; shows version 0.1.17?