Context / Documentation #60
-
if i follow the documentation i found a looot of bugs, my question is, this plugins in dev mode or what ??? because i spent a loooot of time to test and any thing works good, check this capture plz |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It looks like you're using the new syntax (currently on the main branch and undocumented - To use the newer version set the following in your rspc = { git = "https://github.com/oscartbeaumont/rspc", branch = "main", features = ["axum"] } Then continue using the code you have avoid from the If you want to continue using the crates.io version you will have to refer to the documentation website for the older syntax as all of the examples in the repository have been upgraded. Sorry about the inconvenience of this change. The next rspc release has got a lot of breaking changes coming to make the project mor extensible in the future. |
Beta Was this translation helpful? Give feedback.
It looks like you're using the new syntax (currently on the main branch and undocumented -
|t| t(...)
) with an older version of the library (published to crates.io). I am still half a week off releasing the new syntax so I would probally reccomend using it but it won't be documented.To use the newer version set the following in your
Cargo.toml
:Then continue using the code you have avoid from the
examples
folder in the repository.If you want to continue using the crates.io version you will have to refer to the documentation website for the older syntax as all of the examples in the repository…