-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 896 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
[package]
name = "surrealdb-extras"
version = "2.0.7"
edition = "2021"
readme = "readme.md"
repository = "https://github.com/frederik-uni/surrealdb-extras"
license = "MIT"
authors = ["frederik"]
description = "Provides additional functionality for working with SurrealDB"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
surrealdb = "2"
#surrealdb-extras-proc-macro = {path = "surrealdb-extras-proc-macro"}
surrealdb-extras-proc-macro = "2.0.6"
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", optional = true }
geo = { version = "0.28", optional = true }
rust_decimal = { version = "1.36", optional = true }
uuid = { version = "1.11", optional = true }
serde-content = "0.1.0"
[features]
default = []
uuid = ["dep:uuid"]
chrono = ["dep:chrono"]
geo = ["dep:geo"]
rust_decimal = ["dep:rust_decimal"]