iamjpotts

Results 50 comments of iamjpotts

I liked having `ipfs-api` as a single entrypoint, and switching between implementations using features. It leaves the implementation hidden (mostly) from whatever is using the library, which I think is...

@ferristseng are you open to additional maintainers?

I could potentially, in a limited capacity - enough to keep incoming PRs active and unblocked. It would be helpful to have others also. What kind of standards do you...

Are you using OSX, or are you seeing this on a variant of Linux, or on Windows?

The fluent api proposed by @urkle with the `.condition` methods looks appealing: ``` let post = client.post_object().bucket("test").expires_in(Duration::minutes(5)) .condition(PostField::Key, FieldValue::StartsWith("user/user1/")) .condition(PostField::ContentType, FieldValue::StartsWith("image/")) .condition(PostField::ContentTypeRange, FieldValue::Range(0, 3 * 1024 * 1024)) .condition(PostField::AmzMeta("uuid"), FieldValue::Exactly("1234567890"))...

Using this approach, how would one constrain the maximum size of the upload, i.e. constrain `content-length-range` ? > @rcoh > > Would this be the correct way to do this?...

> @iamjpotts I do not believe you can. The presigned post requires a policy document to be created and stored in a POST parameter key. If you look at the...

Made the `tempdir` -> `tempfile` replacement its own PR: https://github.com/launchbadge/sqlx/pull/3006

Moved `env_logger` upgrade to its own PR: https://github.com/launchbadge/sqlx/pull/3009.

Moved `criterion` crate upgrade to https://github.com/launchbadge/sqlx/pull/3010.