Rust

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 29,818 public repositories matching this topic...
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
Describe the bug you encountered:
The options --map-syntax
and --ignored-suffix
cannot work together.
How to reproduce it:
-
Prepare a file
foo.demo
in YAML syntax:# file: foo.demo foo: "bar"
-
Use
bat --map-syntax "*.demo:YAML" foo.demo
can print it with YAML syntax highlighting:bat foo.demo \ --map-syntax "
-
Updated
Mar 10, 2022 - Rust
-
Updated
Mar 7, 2022 - Rust
Discussed with @Kerollmops
As we did for the tokenizer, we want to use the heed dependency from Milli's side to avoid having different versions of Heed in Meilisearch. Indeed compilation will fail if we have different versions of heed in Meilisearch and in Milli.
- Export heed on Milli's side
- Use the exported Heed dependency in
Discussed in swc-project/swc#3065
Originally posted by kwonoj December 18, 2021
Status | Last Updated | Target version |
---|---|---|
Accepted | Dec.19.2021 | TBD |
Summary
Expose a new flag, --trace
or similar to emit profiling trace for SWC's internal
(As discussed in #885,) the current benchmark suite has a few shortcomings.
The most obvious one is that there is no standardized dataset. Past ideas involved using large Git repositories (Linux, Chromium, Rust compiler), but these repositories change over time. We can not simply check out a certain state because the .git
folder will still grow. It'
The project is on 2021 (#2338). Docs should be updated
Questionaire
- I'd like to write this documentation
- I'd like to write this documentation but I'm not sure what's needed
- I don't have time to add this right now, but maybe later
-
Updated
Mar 8, 2022 - Rust
-
Updated
Mar 9, 2022 - C++
-
Updated
Mar 10, 2022 - Rust
List of missing metadata
in nu-command/src/filters
commands.
Missing metadata
will cause ls_colors
to not print properly to the terminal.
The following PR shows a simple example:
- #4525
- #4603
Command | Status |
---|---|
drop |
missing |
keep |
missing |
append |
missing |
-
Updated
Mar 10, 2022 - Rust
When running rustdesk in portable mode on windows, if an attacker has write access to the application directory, we can hijack the dll which is used by rustdesk. It's a little like CVE-2020-35483 of anydesk (https://anydesk.com/cve/2020-35483/).
I have sent details to info@rustdesk.com by email.
Thanks.
-
Updated
Mar 10, 2022 - Rust
-
Updated
Mar 3, 2022 - Rust
-
Updated
Mar 10, 2022 - Rust
-
Updated
Mar 9, 2022 - Makefile
-
Updated
Mar 10, 2022 - Rust
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
-
Updated
Mar 7, 2022 - Rust
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
Ref #94. It might be better for the output to say something like
added: foo (binary file)
than the current
Binary files /dev/null and b/foo differ
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-
Created by Graydon Hoare
Released 2010
- Organization
- rust-lang
- Website
- www.rust-lang.org
- Wikipedia
- Wikipedia
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 decoderop_encoding_decode
to actually perform the decodingcore.close
to destroy the decoderFor cases where
options.stream === false
this can be reduced to a single decode op.To do this,