# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "sqlo" version = "0.2.0" exclude = [ ".vscode/", ".sqlo/", "tests/", "TODO", "target/", ] description = """ Syntactic sugar for sqlx. Sqlo is another attempt to make a nice/pleasant API in Rust using relational database. Sqlo is built on top of sqlx and uses sqlx macros so you keep all the power of sqlx at compile time with less boiler plate. Right now, Sqlite, Postgres and MySql are supported""" readme = "README.md" keywords = [ "sqlx", "orm", "postgres", "sqlite", "mysql", ] categories = ["database-implementations"] license-file = "LICENSE" repository = "https://github.com/jgirardet/sqlo" [lib] name = "sqlo" path = "src/lib.rs" proc-macro = true [dependencies.darling] version = "0.14" [dependencies.glob] version = "0.3.0" [dependencies.heck] version = "0.4" [dependencies.indexmap] version = "1.9" [dependencies.itertools] version = "0.10" [dependencies.lazy_static] version = "1" [dependencies.paste] version = "1" [dependencies.proc-macro2] version = "1" [dependencies.quote] version = "1" [dependencies.regex] version = "1" [dependencies.regex-macro] version = "0.2" [dependencies.serde] version = "1" features = ["derive"] [dependencies.serde_json] version = "1" [dependencies.syn] version = "1" features = ["full"] [dev-dependencies.async-std] version = "1" features = ["attributes"] [dev-dependencies.bigdecimal] version = "0.3" [dev-dependencies.dotenvy] version = "0.15" [dev-dependencies.futures-lite] version = "1" [dev-dependencies.sqlx] version = "0.6" features = [ "runtime-async-std-native-tls", "uuid", "chrono", "bigdecimal", ] [dev-dependencies.trybuild] version = "1" [dev-dependencies.uuid] version = "1" features = ["v4"] [features] mysql = ["sqlx/mysql"] postgres = ["sqlx/postgres"] sqlite = ["sqlx/sqlite"]