[package]
edition = "2021"
name = "easy-db"
version = "0.2.2"
authors = ["Ferivonus <ferivonus@hotmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library that instantly turns SQLite tables into a secure REST API with a built-in client."
readme = "README.md"
license = "MIT"
repository = "https://github.com/Ferivonus/easy-db-rust"
[lib]
name = "easy_db"
path = "src/lib.rs"
[[example]]
name = "full_system"
path = "examples/full_system.rs"
[[example]]
name = "school_client"
path = "examples/school_client.rs"
[[example]]
name = "school_server"
path = "examples/school_server.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.axum]
version = "0.8.8"
[dependencies.reqwest]
version = "0.13.1"
features = ["json"]
[dependencies.rusqlite]
version = "0.38.0"
features = ["bundled"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[dependencies.tower-http]
version = "0.6.8"
features = ["cors"]