-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 771 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
[package]
name = "diesel_ltree"
version = "0.4.0"
# Currently maintained by Conner Bradley, originally written by Ashe Connor
authors = ["Conner Bradley <bradley@advtech.ca>", "Ashe Connor <ashe@kivikakk.ee>"]
description = "Adds support for the PostgreSQL ltree extension to Diesel"
edition = "2021"
license = "MIT"
categories = ["database"]
readme = "README.md"
repository = "https://github.com/TheConner/diesel_ltree"
[dependencies]
byteorder = "1.0"
diesel = { version = "2.2", default-features = false, features = [
"postgres_backend",
] }
serde = { version = "1.0", optional = true }
[dev-dependencies]
dotenv = "0.15"
diesel = { version = "2.2", default-features = false, features = ["postgres"] }
diesel_migrations = "2.0"
[features]
serde = ["dep:serde"]