Skip to content

Commit bebb140

Browse files
committed
Break the main library and tests into separate projects
MASSIVE GIT CHURN. This took a bit of thought on whether I want to do this or not, but I'm starting to think about codegen, which will need to be a separate project. While I could make it another repo, ultimately it needs to move in lockstep with the main repo, and often changes will affect both. As such, I need this repo to be set up for multiple projects, and tests should be a separate project so they can have an independent build script.
1 parent 1d4b417 commit bebb140

104 files changed

Lines changed: 14 additions & 4 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

yaqb/Cargo.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[package]
2+
name = "yaqb"
3+
version = "0.1.0"
4+
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
5+
6+
[dependencies]
7+
libc = "0.2.*"
8+
pq-sys = "0.2.*"
9+
byteorder = "0.3.*"
10+
11+
[dev-dependencies]
12+
quickcheck = "*"
File renamed without changes.

src/expression/expression_methods/bool_expression_methods.rs renamed to yaqb/src/expression/expression_methods/bool_expression_methods.rs

File renamed without changes.

src/expression/expression_methods/global_expression_methods.rs renamed to yaqb/src/expression/expression_methods/global_expression_methods.rs

File renamed without changes.

0 commit comments

Comments
 (0)