[package] name = "sea-orm-try-into-active-model-macro" version = "0.2.0" edition = "2021" description = "derive TryIntoActiveModel macro for sea-orm" license = "MIT" homepage = "https://gitlab.com/dragonn/sea_orm_try_into_active_model" repository = "https://gitlab.com/dragonn/sea_orm_try_into_active_model" categories = [ "database" ] keywords = ["orm", "database"] [lib] name = "sea_orm_try_into_active_model" path = "src/lib.rs" proc-macro = true [dependencies] bae = { version = "0.2", package = "sea-bae", default-features = false, optional = true } syn = { version = "2", default-features = false, features = ["parsing", "proc-macro", "derive", "printing"] } quote = { version = "1", default-features = false } heck = { version = "0.4", default-features = false } proc-macro2 = { version = "1", default-features = false } unicode-ident = { version = "1" } [dev-dependencies] sea-orm = { default-features = false, version = "0.12.1", features = ["macros", "tests-cfg"] } #sea-orm-try-into-active-model = { path = "../", version = "0.1.0" } serde = { version = "1.0", features = ["derive"] } [features] default = ["derive"] postgres-array = [] derive = ["bae"] strum = []