29 lines
810 B
TOML
29 lines
810 B
TOML
[package]
|
|
name = "sea-orm-macros"
|
|
version = "0.9.2"
|
|
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
|
edition = "2021"
|
|
description = "Derive macros for SeaORM"
|
|
license = "MIT OR Apache-2.0"
|
|
documentation = "https://docs.rs/sea-orm"
|
|
repository = "https://github.com/SeaQL/sea-orm"
|
|
categories = [ "database" ]
|
|
keywords = ["async", "orm", "mysql", "postgres", "sqlite"]
|
|
rust-version = "1.60"
|
|
|
|
[lib]
|
|
name = "sea_orm_macros"
|
|
path = "src/lib.rs"
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
bae = "^0.1"
|
|
syn = { version = "^1", default-features = false, features = [ "full", "derive", "clone-impls", "parsing", "proc-macro", "printing", "extra-traits" ] }
|
|
quote = "^1"
|
|
heck = "^0.3"
|
|
proc-macro2 = "^1"
|
|
|
|
[dev-dependencies]
|
|
sea-orm = { path = "../", features = ["macros"] }
|
|
serde = { version = "^1.0", features = ["derive"] }
|