-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (32 loc) · 877 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
[package]
name = "rorm-declaration"
version = "0.4.0"
edition = "2021"
repository = "https://github.com/rorm-orm/rorm-declaration"
categories = ["database"]
authors = ["myOmikron <git@omikron.dev>", "gammelalf"]
keywords = ["database", "declarative"]
homepage = "https://rorm.rs"
documentation = "https://docs.rorm.rs"
license = "MIT"
description = "The base defintion layer all rorm crates rely on."
[lib]
path = "src/lib.rs"
[dependencies]
# Implements Eq and Order types for f64
ordered-float = { version = "~3" }
# serde defines (de-)serialization behaviour for structs and enums
serde = { version = "~1" }
# Macros and Traits for working with enums
strum = { version = "~0.25" }
[build-dependencies]
rustc_version = { version = "~0.4" }
[features]
default = [
"ordered-float/serde",
"serde/derive",
"strum/derive"
]
sqlite = []
mysql = []
postgres = []