Initial commit

This commit is contained in:
Ryan Leckey 2019-06-06 06:02:55 -07:00
commit d29b24abf0
4 changed files with 34 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/target
**/*.rs.bk
Cargo.lock

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "dbx"
version = "0.1.0"
authors = ["Ryan Leckey <leckey.ryan@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Asynchronous and expressive database client in pure Rust."
edition = "2018"
[dependencies]

22
README.md Normal file
View File

@ -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.

0
src/lib.rs Normal file
View File