-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump deps, fix sqlite parsing (#127)
* bump sqlparser, fixed sqlite test * bump deps * fix clippy * migrate better panic
- Loading branch information
1 parent
68ee783
commit dcaca55
Showing
8 changed files
with
405 additions
and
674 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
fn main() -> Result<(), Box<dyn std::error::Error>> { | ||
vergen::EmitBuilder::builder().all_build().all_git().emit()?; | ||
Ok(()) | ||
use anyhow::Result; | ||
use vergen_git2::{BuildBuilder, CargoBuilder, Emitter, Git2Builder, RustcBuilder, SysinfoBuilder}; | ||
|
||
pub fn main() -> Result<()> { | ||
Emitter::default() | ||
.add_instructions(&BuildBuilder::all_build()?)? | ||
.add_instructions(&CargoBuilder::all_cargo()?)? | ||
.add_instructions(&Git2Builder::all_git()?)? | ||
.add_instructions(&RustcBuilder::all_rustc()?)? | ||
.add_instructions(&SysinfoBuilder::all_sysinfo()?)? | ||
.emit() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters