[package]
edition = "2024"
name = "flyer-orm"
version = "0.0.2"
authors = ["Themba Lucas Ngubeni <thembangubeni04@email.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ORM"
homepage = "https://github.com/lucas11776-golang/flyer-orm"
readme = "README.md"
license = "MIT"
repository = "https://github.com/lucas11776-golang/flyer-orm"
[lib]
name = "flyer_orm"
path = "src/lib.rs"
[[bin]]
name = "flyer-orm"
path = "src/main.rs"
[[example]]
name = "insert"
path = "examples/insert.rs"
[dependencies.anyhow]
version = "1.0.101"
[dependencies.async-std]
version = "1.13.2"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.serde]
version = "1.0.228"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sqlx]
version = "0.8.6"
features = [
"any",
"sqlite",
"mysql",
"postgres",
"macros",
"runtime-tokio-native-tls",
]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.uuid]
version = "1.21.0"
features = ["v4"]