-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 1.03 KB
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
[package]
name = "closure-tree"
version = "0.0.1"
edition = "2021"
description = "Closure Tree support for SeaORM (PostgreSQL)."
readme = "README.md"
license = "MIT"
repository = "https://github.com/ClosureTree/closure-tree-rs"
homepage = "https://github.com/ClosureTree/closure-tree-rs"
keywords = ["sea-orm", "hierarchy", "tree", "postgres", "closure-tree"]
categories = ["database", "data-structures"]
[dependencies]
sea-orm = { version = "1.1", default-features = false, features = [
"macros",
"runtime-tokio-rustls",
"sqlx-postgres",
"mock",
] }
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
"postgres",
] }
async-trait = "0.1"
thiserror = "2"
once_cell = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
crc32fast = "1"
closure-tree-macros = { version = "0.0.1", path = "closure-tree-macros" }
[dev-dependencies]
tokio = { version = "1.47", features = ["rt-multi-thread", "macros"] }
[patch.crates-io]
closure-tree-macros = { path = "closure-tree-macros" }