-
Notifications
You must be signed in to change notification settings - Fork 102
Put type on timestamp and duration #237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,11 @@ repository = "https://github.com/meilisearch/meilisearch-sdk" | |
|
||
[dependencies] | ||
async-trait = "0.1.51" | ||
serde_json = "1.0" | ||
iso8601-duration = "0.1.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry for the newbie here 😅 I think I get the idea, but just to be sure, the users of the rust-sdk don't need to have these time-handling libraries on their apps? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The For the context, there was a lot of And the reason why we’re not using But yes, to conclude, a user of the |
||
log = "0.4" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
time = { version = "0.3.7", features = ["serde-well-known", "formatting", "parsing"] } | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
futures = "0.3" | ||
|
Uh oh!
There was an error while loading. Please reload this page.