diff options
Diffstat (limited to 'crates/whirl_db/Cargo.toml')
| -rw-r--r-- | crates/whirl_db/Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/crates/whirl_db/Cargo.toml b/crates/whirl_db/Cargo.toml new file mode 100644 index 0000000..0e9bdf0 --- /dev/null +++ b/crates/whirl_db/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "whirl_db" +version = "0.1.0" +authors = ["Fuwn <[email protected]>"] +edition = "2018" +description = "Whirl, an open-source WorldServer implementation in Rust." +documentation = "https://whirlsplash.org/docs/" +readme = "../../README.rst" +homepage = "https://whirlsplash.org" +repository = "https://github.com/Whirlsplash/whirl" +license = "GPL-3.0-only" +# license-file = "LICENSE" +keywords = ["rust", "worldserver", "whirl", "whirlsplash"] +publish = false + +[dependencies] +# Database +libsqlite3-sys = { version = "0.9.1", features = ["bundled"] } +diesel = { version = "1.4.6", features = ["sqlite"] } + +# Environment +dotenv = "0.15.0" |