forked from ivanceras/old-rustorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (37 loc) · 999 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "rustorm"
version = "0.4.2"
authors = [ "Jovansonlee Cesar <[email protected]>" ]
license = "MIT"
description = "An ORM for rust"
readme = "README.md"
repository = "https://github.com/ivanceras/rustorm"
documentation = "https://ivanceras.github.io/rustorm/rustorm/"
keywords = ["orm", "database", "sql"]
[lib]
name = "rustorm"
[features]
sqlite = ["rusqlite","r2d2_sqlite"]
[dependencies.chrono]
version = "0.2.16"
features = ["rustc-serialize"]
[dependencies.postgres]
version = "0.10.1"
features = ["time", "uuid", "chrono", "rustc-serialize"]
[dependencies]
rustc-serialize = "0.3.16"
serde_json = "0.6.0"
uuid = "0.1.18"
log = "0.3.4"
env_logger = "0.3.2"
regex = "0.1.44"
url = "0.2.38"
time = "0.1.34"
r2d2 = "0.6.1"
r2d2_postgres = "0.9.3"
rusqlite = { version = "0.6.0", optional = true }
mysql = {version = "1.2.0", optional = true }
[dependencies.r2d2_sqlite]
version = "0.0.4"
optional = true
#path = "../r2d2-sqlite"