@@ -13,7 +13,7 @@ description.workspace = true
1313members = [
1414 " canyon_connection" ,
1515 " canyon_crud" ,
16- " canyon_observer " ,
16+ " canyon_migrations " ,
1717 " canyon_macros" ,
1818
1919 " tests"
@@ -23,7 +23,7 @@ members = [
2323# Project crates
2424canyon_connection = { workspace = true , path = " canyon_connection" }
2525canyon_crud = { workspace = true , path = " canyon_crud" }
26- canyon_observer = { workspace = true , path = " canyon_observer " }
26+ canyon_migrations = { workspace = true , path = " canyon_migrations " , optional = true }
2727canyon_macros = { workspace = true , path = " canyon_macros" }
2828
2929# To be marked as opt deps
@@ -33,7 +33,7 @@ tiberius = { workspace = true, optional = true }
3333[workspace .dependencies ]
3434canyon_crud = { version = " 0.3.1" , path = " canyon_crud" }
3535canyon_connection = { version = " 0.3.1" , path = " canyon_connection" }
36- canyon_observer = { version = " 0.3.1" , path = " canyon_observer " }
36+ canyon_migrations = { version = " 0.3.1" , path = " canyon_migrations " }
3737canyon_macros = { version = " 0.3.1" , path = " canyon_macros" }
3838
3939tokio = { version = " 1.27.0" , features = [" full" ] }
@@ -59,13 +59,14 @@ proc-macro2 = "1.0.27"
5959[workspace .package ]
6060version = " 0.3.1"
6161edition = " 2021"
62- authors = [" Alex Vergara<pyzyryab@tutanota.com>, Gonzalo Busto<gbm25 @gmail.com>" ]
62+ authors = [" Alex Vergara<pyzyryab@tutanota.com>, Gonzalo Busto Musi<gonzalo.busto @gmail.com>" ]
6363documentation = " https://zerodaycode.github.io/canyon-book/"
6464homepage = " https://github.com/zerodaycode/Canyon-SQL"
6565readme = " README.md"
6666license = " MIT"
6767description = " A Rust ORM and QueryBuilder"
6868
6969[features ]
70- postgres = [" tokio-postgres" , " canyon_connection/postgres" , " canyon_crud/postgres" , " canyon_observer/postgres" , " canyon_macros/postgres" ]
71- mssql = [" tiberius" , " canyon_connection/mssql" , " canyon_crud/mssql" , " canyon_observer/mssql" , " canyon_macros/mssql" ]
70+ postgres = [" tokio-postgres" , " canyon_connection/postgres" , " canyon_crud/postgres" , " canyon_migrations/postgres" , " canyon_macros/postgres" ]
71+ mssql = [" tiberius" , " canyon_connection/mssql" , " canyon_crud/mssql" , " canyon_migrations/mssql" , " canyon_macros/mssql" ]
72+ migrations = [" canyon_migrations" ]
0 commit comments