Back to the beginning. Switched language to Python cause yes
This commit is contained in:
parent
388d3c8e0d
commit
14f1e6e34d
222 changed files with 7 additions and 838 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.venv
|
90
H-CDPIS-C/Cargo.lock
generated
90
H-CDPIS-C/Cargo.lock
generated
|
@ -1,90 +0,0 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "H-CDPIS-C"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"fltk",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "bitflags"
|
||||
version = "1.3.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.0.78"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
|
||||
|
||||
[[package]]
|
||||
name = "cfg-if"
|
||||
version = "1.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||
|
||||
[[package]]
|
||||
name = "cmake"
|
||||
version = "0.1.49"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "db34956e100b30725f2eb215f90d4871051239535632f84fea3bc92722c66b7c"
|
||||
dependencies = [
|
||||
"cc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-channel"
|
||||
version = "0.5.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-utils"
|
||||
version = "0.8.14"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fltk"
|
||||
version = "1.3.25"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a6630e07aa1fe7de69a7c8f9fe4583a8a8778de0ad7b0418d1e633b0d272226d"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"crossbeam-channel",
|
||||
"fltk-sys",
|
||||
"paste",
|
||||
"ttf-parser",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fltk-sys"
|
||||
version = "1.3.25"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6103dfb304f606328586bc1bd31a4dca89e36633a4c2414bbd140d4af10c6895"
|
||||
dependencies = [
|
||||
"cmake",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "paste"
|
||||
version = "1.0.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"
|
||||
|
||||
[[package]]
|
||||
name = "ttf-parser"
|
||||
version = "0.17.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "375812fa44dab6df41c195cd2f7fecb488f6c09fbaafb62807488cefab642bff"
|
|
@ -1,9 +0,0 @@
|
|||
[package]
|
||||
name = "H-CDPIS-C"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
fltk = "^1.2"
|
|
@ -1,46 +0,0 @@
|
|||
use fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};
|
||||
|
||||
fn main() {
|
||||
let (r, g, b) = utils::hex2rgb(0x0804fc);
|
||||
|
||||
let app = app::App::default();
|
||||
|
||||
// global theming
|
||||
app::background(r, g, b); // background color. For input/output and text widgets, use app::background2
|
||||
app::foreground(20, 20, 20); // labels
|
||||
app::set_font(enums::Font::Courier);
|
||||
app::set_font_size(16);
|
||||
app::set_frame_type(enums::FrameType::RFlatBox);
|
||||
app::set_visible_focus(false);
|
||||
|
||||
// regular widget code
|
||||
let mut win = window::Window::default();
|
||||
win.fullscreen(true);
|
||||
|
||||
let screen_size = screen_size();
|
||||
let width = screen_size.0 as i32;
|
||||
let height = screen_size.1 as i32;
|
||||
let mut arrival_time = frame::Frame::new(0, 0, width / 4, height / 4, "11:39");
|
||||
arrival_time.set_label_color(enums::Color::from_hex(0xffffff));
|
||||
arrival_time.set_label_size(height / 8);
|
||||
|
||||
let mut train_number = frame::Frame::new(0, height / 4, width / 4, height / 4, "R 76901");
|
||||
train_number.set_label_color(enums::Color::from_hex(0xffffff));
|
||||
train_number.set_label_size(arrival_time.label_size() / 3);
|
||||
train_number.set_align(enums::Align::Top);
|
||||
|
||||
let mut train_destination = frame::Frame::new(width / 4, 0, (width / 4) * 3, height / 4, "Warszawa Główna");
|
||||
train_destination.set_label_size(height / 8);
|
||||
train_destination.set_label_color(enums::Color::from_hex(0xffffff));
|
||||
|
||||
// let background = draw_box(enums::FrameType::FlatBox, width / 4, 0, (width / 4) * 3, height / 4, enums::Color::from_hex(0x000000));
|
||||
let mut train_name = frame::Frame::new(width / 4, height - (height / 10), (width / 4) * 3, height / 7, "*** Choroszczanin ***");
|
||||
train_name.set_color(enums::Color::White);
|
||||
train_name.set_frame(FrameType::FlatBox);
|
||||
|
||||
|
||||
win.end();
|
||||
win.show();
|
||||
|
||||
app.run().unwrap();
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
{"rustc_fingerprint":6765316432650736243,"outputs":{"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.66.0 (69f9c33d7 2022-12-12)\nbinary: rustc\ncommit-hash: 69f9c33d71c871fc16ac445211281c6e7a340943\ncommit-date: 2022-12-12\nhost: x86_64-pc-windows-msvc\nrelease: 1.66.0\nLLVM version: 15.0.2\n","stderr":""},"15697416045686424142":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\n","stderr":""},"10376369925670944939":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\wojte\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""}},"successes":{}}
|
|
@ -1,3 +0,0 @@
|
|||
Signature: 8a477f597d28d172789f06886806bc55
|
||||
# This file is a cache directory tag created by cargo.
|
||||
# For information about cache directory tags see https://bford.info/cachedir/
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1,3 +0,0 @@
|
|||
{"message":"unused import: `draw::draw_box`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":44,"byte_end":58,"line_start":1,"line_end":1,"column_start":45,"column_end":59,"is_primary":true,"text":[{"text":"use fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};","highlight_start":45,"highlight_end":59}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":42,"byte_end":58,"line_start":1,"line_end":1,"column_start":43,"column_end":59,"is_primary":true,"text":[{"text":"use fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};","highlight_start":43,"highlight_end":59}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused import: `draw::draw_box`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:1:45\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"crate `H_CDPIS_C` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case: `h_cdpis_c`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(non_snake_case)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: crate `H_CDPIS_C` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mhelp\u001b[0m\u001b[0m: convert the identifier to snake case: `h_cdpis_c`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(non_snake_case)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 2 warnings emitted\u001b[0m\n\n"}
|
|
@ -1 +0,0 @@
|
|||
681a39193a390e02
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":544911202446756179,"profile":1021633075455700787,"path":1684066648322511884,"deps":[[3844725901710089322,"fltk",false,18194437340282354910]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\H-CDPIS-C-4308506da9f00b12\\dep-test-bin-H-CDPIS-C"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
|
@ -1 +0,0 @@
|
|||
a373c3c873c3acc5
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":544911202446756179,"profile":9251013656241001069,"path":1684066648322511884,"deps":[[3844725901710089322,"fltk",false,14291949818119236045]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\H-CDPIS-C-8bf19863daff1c86\\dep-bin-H-CDPIS-C"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1,3 +0,0 @@
|
|||
{"message":"unused import: `draw::draw_box`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":44,"byte_end":58,"line_start":1,"line_end":1,"column_start":45,"column_end":59,"is_primary":true,"text":[{"text":"use fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};","highlight_start":45,"highlight_end":59}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":42,"byte_end":58,"line_start":1,"line_end":1,"column_start":43,"column_end":59,"is_primary":true,"text":[{"text":"use fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};","highlight_start":43,"highlight_end":59}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused import: `draw::draw_box`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:1:45\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"crate `H_CDPIS_C` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case: `h_cdpis_c`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(non_snake_case)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: crate `H_CDPIS_C` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mhelp\u001b[0m\u001b[0m: convert the identifier to snake case: `h_cdpis_c`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(non_snake_case)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 2 warnings emitted\u001b[0m\n\n"}
|
|
@ -1 +0,0 @@
|
|||
597bead0684995e1
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":544911202446756179,"profile":7309141686862299243,"path":1684066648322511884,"deps":[[3844725901710089322,"fltk",false,18194437340282354910]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\H-CDPIS-C-fcc9b5d0181ce045\\dep-bin-H-CDPIS-C"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1,3 +0,0 @@
|
|||
{"message":"unused import: `draw::draw_box`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":44,"byte_end":58,"line_start":1,"line_end":1,"column_start":45,"column_end":59,"is_primary":true,"text":[{"text":"use fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};","highlight_start":45,"highlight_end":59}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src\\main.rs","byte_start":42,"byte_end":58,"line_start":1,"line_end":1,"column_start":43,"column_end":59,"is_primary":true,"text":[{"text":"use fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};","highlight_start":43,"highlight_end":59}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: unused import: `draw::draw_box`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m--> \u001b[0m\u001b[0msrc\\main.rs:1:45\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;14m1\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse fltk::{prelude::*, *, app::screen_size, draw::draw_box, enums::FrameType};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;11m^^^^^^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"crate `H_CDPIS_C` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"src\\main.rs","byte_start":0,"byte_end":0,"line_start":1,"line_end":1,"column_start":1,"column_end":1,"is_primary":true,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case: `h_cdpis_c`","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(non_snake_case)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: crate `H_CDPIS_C` should have a snake case name\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mhelp\u001b[0m\u001b[0m: convert the identifier to snake case: `h_cdpis_c`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;14m= \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15mnote\u001b[0m\u001b[0m: `#[warn(non_snake_case)]` on by default\u001b[0m\n\n"}
|
||||
{"message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;11mwarning\u001b[0m\u001b[0m\u001b[1m\u001b[38;5;15m: 2 warnings emitted\u001b[0m\n\n"}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
5831798ba017a577
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":7112745982619283648,"profile":3735503092003429423,"path":3897781998159177683,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\bitflags-205e953953e958cb\\dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
b1669f42637efee8
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":7112745982619283648,"profile":12637318739757120569,"path":3897781998159177683,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\bitflags-af9a4091ec1e1bec\\dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
c53bb62405610c9c
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":2793076990717341772,"profile":12637318739757120569,"path":4802394270105216011,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cc-7986e89d28731df1\\dep-lib-cc"}}],"rustflags":[],"metadata":5862599371499774553,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
b1e19b1fc97d0297
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":10094334937643343087,"profile":3735503092003429423,"path":13815936321703929154,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cfg-if-84da836299b987c8\\dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
acf2b38cb8788674
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":10094334937643343087,"profile":12637318739757120569,"path":13815936321703929154,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cfg-if-ff49808d25dc2a03\\dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
a3b25c104cc50f15
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":9010407220201204646,"profile":12637318739757120569,"path":996215006547691855,"deps":[[8260795008238812391,"cc",false,11244469044355939269]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cmake-ee34a2cb094c3828\\dep-lib-cmake"}}],"rustflags":[],"metadata":1171082343024898650,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
e61119fd563fe964
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"crossbeam-utils\", \"default\", \"std\"]","target":706841190341757008,"profile":3735503092003429423,"path":7432024911900828822,"deps":[[2452538001284770427,"cfg_if",false,10881397952452747697],[7193308319923015694,"crossbeam_utils",false,16015288296747587777]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-channel-09da6922bfd7f2ab\\dep-lib-crossbeam-channel"}}],"rustflags":[],"metadata":909643187441988617,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
8cbc2a29ae9681a3
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"crossbeam-utils\", \"default\", \"std\"]","target":706841190341757008,"profile":12637318739757120569,"path":7432024911900828822,"deps":[[2452538001284770427,"cfg_if",false,8396531289308787372],[7193308319923015694,"crossbeam_utils",false,12199604498759114776]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-channel-3bd0138ff6146cf2\\dep-lib-crossbeam-channel"}}],"rustflags":[],"metadata":909643187441988617,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
c1581c6fdabb41de
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"std\"]","target":10554878821136711003,"profile":3735503092003429423,"path":17703312334283207103,"deps":[[2452538001284770427,"cfg_if",false,10881397952452747697],[7193308319923015694,"build_script_build",false,17835478125406181372]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-utils-013226d9ba20e31f\\dep-lib-crossbeam-utils"}}],"rustflags":[],"metadata":1609393243086812936,"config":2202906307356721367,"compile_kind":0}
|
|
@ -1 +0,0 @@
|
|||
9f9fb10f61834bc3
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"std\"]","target":13294766831966498538,"profile":12637318739757120569,"path":3738868006833374878,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-utils-03cc4c7bc0f47d6f\\dep-build-script-build-script-build"}}],"rustflags":[],"metadata":1609393243086812936,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
fcd715d0db5884f7
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"","target":0,"profile":0,"path":0,"deps":[[7193308319923015694,"build_script_build",false,14072485913547612063]],"local":[{"RerunIfChanged":{"output":"debug\\build\\crossbeam-utils-5b6d5a8ff9e798ad\\output","paths":["no_atomic.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
1860cbc4a7b34da9
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"std\"]","target":10554878821136711003,"profile":12637318739757120569,"path":17703312334283207103,"deps":[[2452538001284770427,"cfg_if",false,8396531289308787372],[7193308319923015694,"build_script_build",false,17835478125406181372]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-utils-8d7e759cb295c15c\\dep-lib-crossbeam-utils"}}],"rustflags":[],"metadata":1609393243086812936,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
defca1db5ca07ffc
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":16810586067375456160,"profile":3735503092003429423,"path":9134088415997912022,"deps":[[10014981094073286295,"crossbeam_channel",false,7271412716212392422],[11716183885089128395,"ttf_parser",false,11462356793817040500],[14051957667571541382,"bitflags",false,8621323039972864344],[16297418057485373148,"paste",false,6961805006634998766],[16419969872646462394,"fltk_sys",false,9268145487114000050]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fltk-5a180fc2675de730\\dep-lib-fltk"}}],"rustflags":[],"metadata":13062561475478226784,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
cda9b438a33457c6
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":16810586067375456160,"profile":12637318739757120569,"path":9134088415997912022,"deps":[[10014981094073286295,"crossbeam_channel",false,11781863774937070732],[11716183885089128395,"ttf_parser",false,8310752658124537025],[14051957667571541382,"bitflags",false,16788995425668392625],[16297418057485373148,"paste",false,6961805006634998766],[16419969872646462394,"fltk_sys",false,10637080589530416575]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fltk-ad9ec636ac027f62\\dep-lib-fltk"}}],"rustflags":[],"metadata":13062561475478226784,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
b2d6113e37119f80
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":14927884972664617223,"profile":3735503092003429423,"path":7732272210970364418,"deps":[[16419969872646462394,"build_script_main",false,11894907001500935983]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fltk-sys-62db9e0494703b18\\dep-lib-fltk_sys"}}],"rustflags":[],"metadata":13062561475478226784,"config":2202906307356721367,"compile_kind":0}
|
|
@ -1 +0,0 @@
|
|||
2f27c55ce53213a5
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"","target":0,"profile":0,"path":0,"deps":[[16419969872646462394,"build_script_main",false,9714462841996595879]],"local":[{"RerunIfChanged":{"output":"debug\\build\\fltk-sys-685e8cdd467c1e97\\output","paths":["build/android.rs","build/bundled.rs","build/link.rs","build/main.rs","build/source.rs","build/utils.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
|
@ -1 +0,0 @@
|
|||
a752f0407cb4d086
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":2670629102679156082,"profile":12637318739757120569,"path":15790743825822674876,"deps":[[17376665042165853563,"cmake",false,1517648529929843363]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fltk-sys-6cab09231a1a34af\\dep-build-script-build-script-main"}}],"rustflags":[],"metadata":13062561475478226784,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
bfc5294270809e93
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[\"default\"]","target":14927884972664617223,"profile":12637318739757120569,"path":7732272210970364418,"deps":[[16419969872646462394,"build_script_main",false,11894907001500935983]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fltk-sys-97980689b621a1d5\\dep-lib-fltk_sys"}}],"rustflags":[],"metadata":13062561475478226784,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
|
@ -1 +0,0 @@
|
|||
eedb03b0c44c9d60
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":11680813067107455742,"profile":12637318739757120569,"path":4505812500465137116,"deps":[[16297418057485373148,"build_script_build",false,913495601428783629]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\paste-0e5604e5f8f168b4\\dep-lib-paste"}}],"rustflags":[],"metadata":13015013502493569352,"config":2202906307356721367,"compile_kind":0}
|
|
@ -1 +0,0 @@
|
|||
0d620bdb6863ad0c
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"","target":0,"profile":0,"path":0,"deps":[[16297418057485373148,"build_script_build",false,7051563869125767567]],"local":[{"RerunIfChanged":{"output":"debug\\build\\paste-1aad11064a6020e8\\output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}
|
|
@ -1 +0,0 @@
|
|||
8f71386afa2fdc61
|
|
@ -1 +0,0 @@
|
|||
{"rustc":17274253158082290215,"features":"[]","target":13294766831966498538,"profile":12637318739757120569,"path":9013106706951545540,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\paste-842564660b08e259\\dep-build-script-build-script-build"}}],"rustflags":[],"metadata":13015013502493569352,"config":2202906307356721367,"compile_kind":0}
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
This file has an mtime of when this was started.
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue