Les Partages de Memiks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 1 / 2
24 results tagged Rust  ✕
Svgbob editor https://svgbob-editor.netlify.app/
Wed Feb 24 17:39:46 2021 archive.org
QRCode
svg rust library
GitHub - stm32-rs/stm32f1xx-hal: A Rust embedded-hal HAL impl for the STM32F1 family based on japarics stm32f103xx-hal https://github.com/stm32-rs/stm32f1xx-hal
Sun Jan 17 01:47:22 2021 archive.org
QRCode
thumbnail

A Rust embedded-hal HAL impl for the STM32F1 family based on japarics stm32f103xx-hal - stm32-rs

stm32f rust bluepill
GitHub - tock/tock: A secure embedded operating system for microcontrollers https://github.com/tock/tock
Sun Jan 3 07:44:43 2021 archive.org
QRCode
thumbnail

A secure embedded operating system for microcontrollers - tock

risc-v riscv rust rtos stm32f411
GitHub - 00imvj00/mqttrs: Async Mqtt encoder and decoder for rust. https://github.com/00imvj00/mqttrs
Mon Dec 28 14:29:43 2020 archive.org
QRCode
thumbnail

Async Mqtt encoder and decoder for rust. Contribute to 00imvj00

rust mqtt
How to display 3D Wayland inside a virtual machine? - Super User https://superuser.com/questions/1532787/how-to-display-3d-wayland-inside-a-virtual-machine
Fri Dec 25 11:26:11 2020 archive.org
QRCode
thumbnail

Walkthrough:

Host: AMD Ryzen 7 2700X, Windows 10 1909, 16GB RAM

Guest: VirtualBox 6.0.18, 2 CPU, 4 GB RAM, 128MB VRAM, VBoxSVGA Graphics Controller w/ 3D Accel on, 2 Virtual Displays.

Guest OS: https://manjaro.org/downloads/official/xfce/

Mounted a blank dynamically-sized VMDK set to 100GB as the hard drive, and the Manjaro ISO as an optical disk.
Boot the machine, it will default to the ISO since there is no GRUB on the VMDK, and install Manjaro COMPLETELY DEFAULT.
Shut down the VM, un-mount the ISO.
Start VM, should now boot into the Manjaro xfce desktop environment.
Here, I let Manjaro do ALL the updates it wanted to automatically through the Pamac GUI (the default Manjaro Package Manager)
Through Pamac, install meson, gcc, pkgconf, glm, and gobject-introspection.
Grab & run the Wayfire install script git clone https://github.com/WayfireWM/wf-install && cd wf-install && ./install.sh
Run Wayfire with /opt/wayfire/bin/startwayfire
wayland Rust virtualbox
Introduction - https://way-cooler.org/book/wayland_introduction.html
Wed Dec 23 21:07:17 2020 archive.org
QRCode
rust wayland Book compositor
GitHub - Jimskapt/rust-book-fr: French translation of the book "The Rust Programming Language" https://github.com/Jimskapt/rust-book-fr
Mon Dec 21 23:31:28 2020 archive.org
QRCode
thumbnail

:fr: French translation of the book "The Rust Programming Language" - Jimskapt

Rust Book fr
@VinceOPS | Rust : Premiers retours sur le langage https://vinceops.me/rust-premiers-retours/
Mon Aug 26 22:48:53 2019 archive.org
QRCode
thumbnail

Quand je n’écris pas en TypeScript, je m’intéresse à Rust, langage de programmation système au typage fort et statique créé par Mozilla. Entre autres, par…

Rust
Toshi/README.md at master · toshi-search/Toshi · GitHub https://github.com/toshi-search/Toshi/blob/master/README.md
Tue Apr 9 13:49:34 2019 archive.org
QRCode
thumbnail

A full-text search engine in rust. Contribute to toshi-search/Toshi development by creating an account on GitHub.

rust elasticsearch server
GitHub - clux/muslrust: Docker environment for building musl based static rust binaries https://github.com/clux/muslrust/
Thu Feb 14 11:06:35 2019 archive.org
QRCode
thumbnail

A plain docker environment for building static binaries compiled with rust and linked against musl instead of glibc. Built nightly on travis.

This is only useful if you require external C dependencies, because otherwise you could do rustup target add x86_64-unknown-linux-musl.

This container comes with a bunch of statically compiled C libraries using musl-gcc so that we can statically link against these as well.

If you already have rustup installed on the machine that should compile, you might consider cross as a more general solution for cross compiling rust binaries.
Usage

Pull and run from a rust project root:

docker pull clux/muslrust
docker run -v $PWD:/volume --rm -t clux/muslrust cargo build

You should have a static executable in the target folder:

ldd target/x86_64-unknown-linux-musl/debug/EXECUTABLE
not a dynamic executable

From there on, you can include it in a blank docker image (because everything you need is included in the binary) and perhaps end up with a 5MB docker blog image.

rust compile docker musl static
Rustlog : Why is a Rust executable large? https://lifthrasiir.github.io/rustlog/why-is-a-rust-executable-large.html
Thu Feb 14 10:50:35 2019 archive.org
QRCode
thumbnail

This post is intended as a tour of various techniques (not necessarily all practical) of reducing program size, but if you demand some conclusion, the pragmatic takeaway is that:

Compile with --release.
Before distribution, enable LTO and strip the binary.
If your program is not memory-intensive, use the system allocator (assuming nightly).
You may be able to use the optimization level s/z in the future as well.
I didn’t mention this because it doesn’t improve such a small program, but you can also try UPX and other executable compressors if you are working with a much larger application.

Via http://nicolas-delsaux.hd.free.fr/Shaarli/?x0e0Fw

rust large binary optimization
Rocket - Simple, Fast, Type-Safe Web Framework for Rust https://rocket.rs/
Thu Feb 14 10:38:16 2019 archive.org
QRCode

Meet Rocket.
Rocket is a web framework for Rust that makes it simple to write fast, secure web applications without sacrificing flexibility, usability, or type safety.

Via http://nicolas-delsaux.hd.free.fr/Shaarli/?zszx1Q

rust web framework rocket json form
Kroeg https://puckipedia.com/kroeg
Thu Jan 31 16:45:47 2019 archive.org
QRCode
thumbnail

Really flexible federated social media!

activitypub rust server
Compiling from Rust to WebAssembly | MDN https://developer.mozilla.org/en-US/docs/WebAssembly/Rust_to_wasm
Wed Jan 23 18:57:24 2019 archive.org
QRCode
thumbnail

If you've written some Rust code, you can compile it into WebAssembly! This tutorial takes you through all you need to know to compile a Rust project to wasm and use it in an existing web app.

rust wasm webapp
Introduction - The Cargo Book https://doc.rust-lang.org/cargo/index.html
Wed Jan 23 18:27:31 2019 archive.org
QRCode
thumbnail

Le livre de la documentation de Cargo pour Rust

rust cargo book documentation
Asynchronisme en rust https://rust-lang.github.io/async-book/
Wed Jan 23 10:10:13 2019 archive.org
QRCode
thumbnail

Asynchronisme en rust

Asynchronisme rust
Le langage de programmation Rust - Mozilla | MDN https://developer.mozilla.org/fr/docs/Mozilla/Rust
Wed Sep 19 16:45:45 2018 archive.org
QRCode

Bon faut que je me mette à apprendre Rust.

ce langage me parle, il m'appelle :p

non sérieusement il a l'air bien, entre C++ et les langages de hauts niveaux..

Allez je m'y met !

voir aussi

  • https://blog.guillaume-gomez.fr/Rust
  • https://doc.rust-lang.org/book/

Bon pour faire un epub de la version 2018 de Rust Language:

wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--domains rust-lang.org \
--no-parent \
https://doc.rust-lang.org/book/2018-edition/

cd ./doc.rust-lang.org/book/

ebook-convert ./2018-edition/index.html rust_lang.epub --title 'Rust Language' --output-profile kobo

Rust mozilla langage
GitHub - rust-syndication/rss: Library for serializing the RSS web content syndication format https://github.com/rust-syndication/rss
Mon Sep 17 20:45:59 2018 archive.org
QRCode
thumbnail

Library for serializing the RSS web content syndication format.
Supported Versions

Reading from the following RSS versions is supported:

RSS 0.90
RSS 0.91
RSS 0.92
RSS 1.0
RSS 2.0

Writing support is limited to RSS 2.0.
Documentation

Released
Master

Usage

Add the dependency to your Cargo.toml.

[dependencies]
rss = "1.0"

The package includes a single crate named rss.

extern crate rss;

rust rss syndication
GitHub - rust-syndication/atom: Library for serializing the Atom web content syndication format https://crates.io/crates/atom_syndication https://github.com/rust-syndication/atom
Mon Sep 17 20:45:17 2018 archive.org
QRCode
thumbnail

Library for serializing the Atom web content syndication format.

Documentation
Usage

Add the dependency to your Cargo.toml.

[dependencies]
atom_syndication = "0.6"

Or, if you want Serde include the feature like this:

[dependencies]
atom_syndication = { version = "0.6", features = ["with-serde"] }

The package includes a single crate named atom_syndication.

extern crate atom_syndication;

rust atom Syndication
Set Up Rust | Writing an OS in Rust (First Edition) https://os.phil-opp.com/set-up-rust/
Thu Aug 2 16:59:47 2018 archive.org
QRCode
thumbnail

Xargo is “a drop-in replacement for cargo”, so every cargo command also works with xargo. You can do e.g. xargo --help, xargo clean, or xargo doc. However, the build command gains additional functionality: xargo build will automatically cross compile the core library when compiling for custom targets.

https://os.phil-opp.com/set-up-rust/#target-specifications

https://os.phil-opp.com/set-up-rust/#compiling


switch to nigthly:
https://github.com/rust-lang-nursery/rustup.rs#working-with-nightly-rust

rustup install nightly
rustup default nightly
rustup update

cargo rust xargo nightly
page 1 / 2
4759 links, including 1673 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn