-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improve insert * add pragmas * add debug on profile release for cargo flamegraph * handle CTEs * support backtick filenames * add integration tests * add support for UNIONs * add library and doc tests
- Loading branch information
Showing
18 changed files
with
1,079 additions
and
70 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,15 @@ authors = ["Dermot Haughey <[email protected]>"] | |
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[profile.release] | ||
debug = true | ||
|
||
[dependencies] | ||
rusqlite = "0.25.1" | ||
csv="1.1" | ||
itertools = "0.10.0" | ||
sqlparser = "0.9.0" | ||
uuid={version = "0.8", features = ["v4"]} | ||
|
||
[dev-dependencies] | ||
assert_cmd="0.10" | ||
predicates="1" |
Oops, something went wrong.