Skip to content
#

Rust

rust logo

Rust is a systems programming language created by Mozilla. It is similar to C++, but is designed for improved memory safety without sacrificing performance.

Here are 30,186 public repositories matching this topic...

lucacasonato
lucacasonato commented Mar 4, 2022

See https://github.com/denoland/deno/blob/main/ext/web/08_text_encoding.js#L98.

Currently for a non streaming decode we perform 3 native calls:

  • op_encoding_new_decoder to create the decoder
  • op_encoding_decode to actually perform the decoding
  • core.close to destroy the decoder

For cases where options.stream === false this can be reduced to a single decode op.

To do this,

good first issue perf web ext/web
tauri
kornelski
kornelski commented Aug 14, 2021

Is your feature request related to a problem? Please describe.
I've set up a new tauri project following docs on tauri.studio, and my newly-generated app had bundle.identifier set to com.tauri.dev.

For macOS apps (and probably other OSes) this identifier has to be globally unique for every app. It can be problematic when developers forget to customize it. An existing example tauri app

type: enhancement good first issue cli.rs priority: low
bat
meilisearch
curquiza
curquiza commented Mar 21, 2022

To prevent having this kind of issue in the future, we need to add a CI that checks the Meilisearch server can receive documents and well process them.

A basic version of the CI script should

  • Run the Meilisearch server without any argument
  • Add a simple document, ex: [{"id": 1, "name": "toto l'asticot"}]
  • Check the document was
good first issue maintenance
yew
LLFourn
LLFourn commented Mar 20, 2022

Problem

Mar 20 11:01:51.320  INFO building yew-app
   Compiling yew-app v0.1.0 (/home/llfourn/src/yew-app)
error[E0425]: cannot find function `start_app` in crate `yew`
  --> src/main.rs:11:10
   |
11 |     yew::start_app::<App>();
   |          ^^^^^^^^^ not found in `yew`

For more information about this error, try `rustc --explain E0425`.
error: could not compile `yew-app` 
fdncred
fdncred commented Mar 10, 2022

Related problem

People can't find what they're looking for.

Describe the solution you'd like

It would be nice to add search terms to extra_usage so that when people use help -f they can find what they're looking for. For instance, maybe we add popular encodings to the decode command's extra_usage statment like utf-8, windows-1252, others.

maybe we should have common

help wanted good first issue polish
sourcebox
sourcebox commented May 31, 2021

I'm working on an application which mainly consists for sliders for parameter control. For better user experience, it would be nice to offer two features: reset to default and fine control.

On VST plugins this is normally done via double-clicks and/or modifier keys. E.g. double-clicking resets the slider to a default (mostly 0), alternatively Ctrl-/Cmd-Klick also does it. For fine control, ofte

feature good first issue widget
cube.js
leogodin217
leogodin217 commented Sep 17, 2021

Describe the bug
Using a time dimension on a runningTotal measure on Snowflake mixes quoted and unquoted columns in the query. This fails the query, because Snowflake has specific rules about quoted columns. Specifically:

  • All unquoted column names are treated as upper case
  • Quoted column names are case sensitive.

So "date_from" <> date_from

To Reproduce
Steps to reproduce

bug help wanted good first issue
spotify-tui
tysaya123
tysaya123 commented Jun 6, 2020

It would be neat if you could change the color of the text that shows when the progress bar covers it without changing the background. My motivation is that I enjoy the black background but the default color can be hard to read on dark progress bar colors.

<img width="1423" alt="Screen Shot 2020-06-06 at 11 50 41 AM" src="https://user-images.githubusercontent.com/16331012/83952212-14b8d780-

good first issue

Created by Graydon Hoare

Released 2010

Organization
rust-lang
Website
www.rust-lang.org
Wikipedia
Wikipedia

Related Topics

c-plus-plus language