forked from mr-fatalyst/oxyde
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 743 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 743 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
[workspace]
resolver = "2"
members = [
"crates/oxyde-codec",
"crates/oxyde-query",
"crates/oxyde-driver",
"crates/oxyde-migrate",
"crates/oxyde-core-py",
]
[workspace.package]
version = "0.5.0"
edition = "2021"
rust-version = "1.75"
license = "MIT"
repository = "https://github.com/mr-fatalyst/oxyde"
homepage = "https://github.com/mr-fatalyst/oxyde"
description = "High-performance async ORM with Rust core"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
[workspace.lints.rust]
unsafe_code = "warn"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"
nursery = "warn"