diff --git a/src/blog/caching-cargo-run.md b/src/blog/caching-cargo-run.md new file mode 100644 index 000000000..78d299b1f --- /dev/null +++ b/src/blog/caching-cargo-run.md @@ -0,0 +1,10 @@ +--- +author: JesterOrNot +date: Mon Apr 27 2020 +image: /rust-logo.png +subtitle: "Speeding up `cargo run` with prebuilds" +teaserImage: /rust-logo.png +title: Caching Cargo Run +--- + +If you've written just about anything in Rust you know that builds can take a *long* time, but what if we could bypass these long wait times? diff --git a/src/utils/authors.ts b/src/utils/authors.ts index 56ced6e37..76ef23f69 100644 --- a/src/utils/authors.ts +++ b/src/utils/authors.ts @@ -90,6 +90,15 @@ export const allAuthors: { [idx: string]: Author } = { linkedin: 'mirospoenemann' }, description: "Miro is thrilled about innovation on programming languages, DSLs, graphical modeling and web technologies." + }, + 'JesterOrNot': { + name: "Sean Hellum", + socialProfiles: { + github: "JesterOrNot", + twitter: '', + linkedin: 'sean-hellum-84ba401a2' + }, + description: "Sean is a developer advocate and rustacean with a passion for Docker, Linux, Bash, Rust, and CLIs" } } diff --git a/static/rust-logo.png b/static/rust-logo.png new file mode 100644 index 000000000..ebce1a145 Binary files /dev/null and b/static/rust-logo.png differ