-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 967 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 = "database-reflection"
version = "0.1.5"
edition = "2021"
authors = ["Ivan Ganev <[email protected]>"]
description = "Database reflection library. Currently supporting only MariaDB and MySQL with InnoDB."
keywords = ["sqlx", "database", "reflection", "mysql", "mariadb"]
categories = ["database", "data-structures", "development-tools"]
homepage = "https://github.com/iganev/database-reflection"
repository = "https://github.com/iganev/database-reflection"
documentation = "https://docs.rs/crate/database-reflection/"
readme = "README.md"
license = "MIT"
[lib]
name = "database_reflection"
path = "src/lib.rs"
[features]
mariadb = [ "sqlx/mysql" ]
[dependencies]
sqlx = { version = "0", features = ["runtime-tokio-rustls"] }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = { version = "1", features = ["preserve_order"] }
indexmap = { version = "2", features = ["serde"] }
[badges]
maintenance = { status = "actively-developed" }