-
Updated
Aug 11, 2021 - Rust
crates
Here are 226 public repositories matching this topic...
-
Updated
Aug 11, 2021 - Rust
-
Updated
May 22, 2021 - Rust
-
Updated
Aug 12, 2021 - Rust
-
Updated
Aug 12, 2021 - JavaScript
-
Updated
Aug 9, 2021 - Rust
It is a very exciting Authorization Flow for developers of server-less applications that use Spotify API directly.
Not only will the users of these applications no longer have to setup their own Spotify Applications,
but also the creators will get to see usage metrics of their applications in their Spotify Dashboard.
You can find out how it works [here](https://developer.spotify.com
This is a tracking issue for additional Store
implementations.
Here is a non-exhaustive list of potential candidates for an Store
implementation:
- S3Storage:
This would store crate tarballs and rendered README pages into Amazon's S3. - RemoteStorage:
Requires to implement a companion server.
The idea is to have a reserved folder on another machine which runs a comp
Some testing suggests that deps.rs supports projects hosted on github and gitlab but not my project's which are on sourcehut. At least, when specifying a repository path such as https://deps.rs/repo/sourcehut/~tsdh/swayr or https://deps.rs/repo/srht/~tsdh/swayr, I get the error "Could not parse repository path".
The actual repository is https://git.sr.ht/~tsdh/swayr.
-
Updated
Jul 24, 2021 - Rust
-
Updated
Jul 8, 2021 - Rust
-
Updated
Aug 12, 2021 - Rust
Support for stdin
from conversation with @sunshowers
fn filter<F: FnMut(&PackageMetadata) -> bool>(&self, f: F) -> Self
This can be accomplished using intersection
, but it would be great to have a convenience function for it
you could also add a parfilter
function that uses rayon
#[serde_with::serde_as]
#[derive(Debug, serde::Deserialize)]
struct FooBar(#[serde_as(as = "VecSkipError<_>")] Vec<u32>);
serde_json::from_value::<FooBar>(serde_json::json!([
0,
"String",
1,
[],
2,
{},
3,
]))?
// Results in
// FooBar([0, 1, 2, 3])
VecSkipError
implementation
str
-
Updated
May 29, 2021 - Rust
-
Updated
Apr 29, 2021 - Rust
I am looking at using ktra
as an internal registry at work, and while I don't think I will loose my password, there is the possibility for others to do so. It would be nice to have a way to delete user accounts or forcibly set an account's password to allow for recovery.
Currently, cv-pinhole
has the essential matrix and various methods designed to help people extract pose from it, among other things. The same thing needs to be done for the homography matrix.
-
Updated
Apr 5, 2021 - Rust
Improve this page
Add a description, image, and links to the crates topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the crates topic, visit your repo's landing page and select "manage topics."
In the docs, there are several cases such as here where code snippet examples are shown side by side, without actually specifying which files they are (eg. deny.toml vs Cargo.toml) which can lead to confusion for users. Every code snippet should just specify
# <name>.toml
at the top for clarity.