From d29b24abf0f491d912333f34d7b5187e4c30bb08 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Thu, 6 Jun 2019 06:02:55 -0700 Subject: [PATCH] Initial commit --- .gitignore | 3 +++ Cargo.toml | 9 +++++++++ README.md | 22 ++++++++++++++++++++++ src/lib.rs | 0 4 files changed, 34 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 README.md create mode 100644 src/lib.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..2f88dbac --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/target +**/*.rs.bk +Cargo.lock \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..06ea29cd --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "dbx" +version = "0.1.0" +authors = ["Ryan Leckey "] +license = "MIT OR Apache-2.0" +description = "Asynchronous and expressive database client in pure Rust." +edition = "2018" + +[dependencies] diff --git a/README.md b/README.md new file mode 100644 index 00000000..e75e7969 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# dbx +_Asynchronous and expressive database client in pure Rust_ + +This is an experiment being worked on in stages. The first stage +will be an untyped query builder. + +## License + +Licensed under either of + + * Apache License, Version 2.0 + ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) + * MIT license + ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) + +at your option. + +## Contribution + +Unless you explicitly state otherwise, any contribution intentionally submitted +for inclusion in the work by you, as defined in the Apache-2.0 license, shall be +dual licensed as above, without any additional terms or conditions. diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 00000000..e69de29b