-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
34 lines (28 loc) · 1014 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
[package]
name = "diesel-tracing"
version = "0.3.1"
authors = ["John Children <john.children@quantinuum.com>"]
license = "MIT"
edition = "2021"
description = "Connection telemetry middleware for diesel and tracing"
repository = "https://github.com/CQCL/diesel-tracing"
readme = "README.md"
keywords = ["diesel", "logging", "tracing", "database", "opentelemetry"]
[badges]
maintenance = { status = "experimental" }
[features]
default = []
statement-fields = []
mysql = ["diesel/mysql"]
postgres = ["diesel/postgres", "diesel/network-address", "ipnetwork"]
sqlite = ["diesel/sqlite"]
r2d2 = ["diesel/r2d2"]
[dependencies]
diesel = { version = "2.2", features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"], default-features = false }
ipnetwork = { version = ">=0.12.2, <0.21.0", optional = true }
tracing = "0.1"
[dev-dependencies]
diesel = { version = "2.0", features = ["mysql", "postgres", "sqlite"] }
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true