inzanez
inzanez
Same here
Ok. It seems that the current `master` branch is indeed correct, but the currently released 0.5 crate is not the same. Could you publish a fix?
Is there somebody else that could release it? Or,...is there any reason keeping a non-building version as the main released one? Or did that currently released 0.5 build with an...
Any update on this one? If you are not implementing anything already I would get started with this.
It‘s not a particular function. It‘s the ‚extra‘ information from the query response. I think only ‚results‘ are parsed right now, the rest is ignored. For instance, the 'total_count' etc....
@EpiFouloux I think it's a difference talking from the perspective of `aragog` as an ODM and the driver itself. Removing the `_id`, `_key` and `_rev` from the default `Document` in...
@EpiFouloux I would leave that as an exercise to the user of `arangors`. I think it is not weirder in any way than what you would do using `Diesel` for...
@EpiFouloux Just as a quick update. Assuming I created a struct like this: ``` #[derive(Debug, Default, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] struct User { #[serde(rename="_id")] id: String, #[serde(rename="_key")] key: String,...
@EpiFouloux I will paste a sample, just to make sure we talk about the same thing: ``` #[macro_use] extern crate serde_derive; use arangors::Document; #[derive(Debug, Default, Serialize, Deserialize)] #[serde(rename_all = "camelCase")]...
@arn-the-long-beard Well, I don't really want to talk about 'right' and 'wrong' here, as it's not that simple. I see that also the Golang driver does the same thing we...