slint/internal/compiler
Tobias Hunger 3d87b3ab93 clippy: Allow redundant_clone in generated rust code
This disabled about 70 clippy warnings like this one:

```
warning: redundant clone
     --> target\debug\build\energy-monitor-7b0492feb1633656\out\desktop_window.rs:44279:37
      |
44279 |                      (if (((r#state . clone ()) . r#previous_state as f64) == (1f64 as f64)) {
      |                                     ^^^^^^^^^^^ help: remove this
      |
note: cloned value is neither consumed nor mutated
     --> target\debug\build\energy-monitor-7b0492feb1633656\out\desktop_window.rs:44279:28
      |
44279 |                      (if (((r#state . clone ()) . r#previous_state as f64) == (1f64 as f64)) {
      |                            ^^^^^^^^^^^^^^^^^^^^
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
```
2023-03-09 12:12:03 +01:00
..
generator clippy: Allow redundant_clone in generated rust code 2023-03-09 12:12:03 +01:00
LICENSES Fix LICENSES symlinks 2022-02-09 17:05:47 +01:00
llr clippy: Fix clippy warnings 2023-03-09 09:35:29 +01:00
parser Make the old syntax a warning 2023-02-14 12:38:39 +01:00
parser-test-macro Bump version number to 1.0.0 2023-02-03 11:07:15 +01:00
passes clippy: Fix clippy warnings 2023-03-09 09:35:29 +01:00
tests Fix visible property on the root of a component 2023-02-14 13:28:54 +01:00
widgets scroll-view: add min width/height vor scorll bar (#2353) 2023-03-09 09:08:48 +01:00
build.rs switch to yeslogic-fontconfig-sys from servo-fontconfig 2022-10-05 15:21:54 +02:00
builtin_macros.rs Introduce a rem unit in the type system 2022-11-24 11:33:38 +01:00
builtins.slint docs: Go over builtin_elements.md (#2280) 2023-02-24 11:03:56 +01:00
Cargo.toml Update resvg dependency 2023-02-16 09:03:22 +01:00
diagnostics.rs clippy: Fix clippy warnings 2023-03-09 09:35:29 +01:00
embedded_resources.rs C++: Generate image texture data for software renderer 2022-12-09 09:25:48 +01:00
expression_tree.rs clippy: Fix clippy warnings 2023-03-09 09:35:29 +01:00
fileaccess.rs Scan for style files in the include directories 2022-02-15 13:55:50 +01:00
generator.rs Fix crash when a state condition is detected as constant 2023-02-24 16:43:48 +01:00
langtype.rs WIP: pure qualifier for callback and functions 2022-12-22 00:26:27 -08:00
layout.rs Remove undocumented and dysfunctional PathLayout 2023-01-21 13:10:19 +01:00
lexer.rs Update copyright information to reflect name change 2022-02-09 10:27:47 +01:00
lib.rs Fix SLINT_EMBED_RESOURCES environment variable 2023-02-23 21:10:43 +01:00
literals.rs Update copyright information to reflect name change 2022-02-09 10:27:47 +01:00
llr.rs Fix a bunch of documentation warnings 2022-04-26 12:47:34 +02:00
load_builtins.rs Compiler: use the new syntax for builtins.slint 2023-02-10 16:22:52 +01:00
lookup.rs clippy: Fix clippy warnings 2023-03-09 09:35:29 +01:00
namedreference.rs Builtin elements: use the input output syntax 2022-11-01 12:51:45 +01:00
object_tree.rs clippy: Fix clippy warnings 2023-03-09 09:35:29 +01:00
parser.rs clippy: Fix clippy warnings 2023-03-09 09:35:29 +01:00
passes.rs Fix visible property on the root of a component 2023-02-14 13:28:54 +01:00
README.md Change the Url from sixtyfps.io to slint-ui.com 2022-02-08 08:52:46 +01:00
typeloader.rs clippy: Fix clippy warnings 2023-03-09 09:35:29 +01:00
typeregister.rs WIP: pure qualifier for callback and functions 2022-12-22 00:26:27 -08:00

The Slint Compiler Library

NOTE: This library is an internal crate of the Slint project. This crate should not be used directly by applications using Slint. You should use the slint crate instead.

WARNING: This crate does not follow the semver convention for versioning and can only be used with version = "=x.y.z" in Cargo.toml.