diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-04-19 22:14:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-19 22:14:00 -0400 |
commit | ae479b1036630970c0d0aaf67cbb500a3c7ed622 (patch) | |
tree | 14cd085a22b0ec34f24d3654b1525bf3dbd2f766 /ext | |
parent | 803499886b90536cdbb9d40eaa9085157772d771 (diff) |
perf(fmt/lint): incremental formatting and linting (#14314)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/webstorage/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/webstorage/lib.rs b/ext/webstorage/lib.rs index 47d720ffb..6284a59bc 100644 --- a/ext/webstorage/lib.rs +++ b/ext/webstorage/lib.rs @@ -13,6 +13,8 @@ use rusqlite::OptionalExtension; use std::fmt; use std::path::PathBuf; +pub use rusqlite; + #[derive(Clone)] struct OriginStorageDir(PathBuf); |