forked from EasyDB-io/Rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (24 loc) · 805 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "easydb"
description = "An iterface for working with easydb.io in rust."
homepage = "https://github.com/drewtato/easydb-rust"
documentation = "https://docs.rs/easydb"
repository = "https://github.com/drewtato/easydb-rust"
readme = "README.md"
keywords = ["easydb"]
categories = ["api-bindings", "database"]
license = "MIT OR Apache-2.0"
version = "0.2.0" # Update html_root_url when updating version
authors = ["Drewtato <[email protected]>"]
edition = "2018"
[dependencies]
# Sending requests to the DB
reqwest = "^0.9.22"
# Deriving serialize and deserialize
serde = { version = "1.0", features = ["derive"] }
# Dealing with json requests to and from the DB
serde_json = "^1.0.41"
# Dealing with the toml configuration file easydb.toml
toml = "^0.5.5"
# Errors
error-chain = "^0.12.1"