-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 801 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
[package]
name = "good-ormning"
version = "0.3.2"
edition = "2021"
license = "ISC"
description = "Maybe an ORM"
homepage = "https://github.com/andrewbaxter/good-ormning"
repository = "https://github.com/andrewbaxter/good-ormning"
readme = "readme.md"
[features]
default = []
chrono = ["dep:chrono"]
pg = []
sqlite = []
[dependencies]
chrono = { version = "0.4", optional = true }
enum_dispatch = "0.3"
flowcontrol = "0.2.2"
genemichaels-lib = "0.5.0-pre3"
hex = "0.4"
proc-macro2 = "1"
quote = "1"
rpds = "1"
samevariant = "0.0"
stable-hash = "0.4"
syn = "2"
[workspace]
members = ["integration_tests", "runtime"]
[dev-dependencies]
good-ormning-runtime = { path = "runtime", features = [
"pg",
"sqlite",
"chrono",
] }
rusqlite = "0.32"
[package.metadata.docs.rs]
all-features = true