Rust tips is a user on octodon.social. You can follow them or interact with them if you have an account anywhere in the fediverse. If you don't, you can sign up here.
Rust tips @rust

In you can easily use local packages. Specify a path in Cargo.toml:

[dependencies]
some_crate = { path = "/dir/of/some/crate/" }

The path can be relative. If it's a subdir, it will make a workspace: doc.crates.io/manifest.html#th (great for monorepos).

You can also use { git = "URL" }
doc.crates.io/specifying-depen

· Web · 0 · 2