-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
40 lines (32 loc) · 787 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
[package]
authors = ["Antoni Boucher <[email protected]>"]
categories = ["database"]
description = "Compile-time ORM (runtime library)"
license = "MIT"
name = "tql"
repository = "https://github.com/antoyo/tql"
version = "0.1.0"
[dependencies]
[dependencies.chrono]
optional = true
version = "^0.4.0"
[dependencies.postgres]
optional = true
version = "^0.15.1"
[dependencies.rusqlite]
features = ["chrono"]
optional = true
version = "^0.13.0"
[dev-dependencies]
lazy_static = "^1.0.0"
[dev-dependencies.postgres]
features = ["with-chrono"]
version = "^0.15.1"
[dependencies.tql_macros]
path = "./tql_macros"
version = "0.1.0"
[features]
default = ["unstable"]
sqlite = ["rusqlite", "tql_macros/rusqlite"]
pg = ["postgres", "tql_macros/postgres"]
unstable = ["tql_macros/unstable"]