-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 907 Bytes
/
Cargo.toml
File metadata and controls
48 lines (42 loc) · 907 Bytes
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
45
46
47
48
[package]
name = "good-ormning"
version = "0.4.1"
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"]
jiff = ["dep:jiff"]
pg = []
sqlite = []
[dependencies]
chrono = { version = "0.4", optional = true }
jiff = { version = "0.2", 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",
"jiff",
] }
rusqlite = "0.37"
[package.metadata.docs.rs]
all-features = true
[lints.clippy]
all = "allow"