Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix warnings & update tests
Browse files Browse the repository at this point in the history
texodus committed Oct 27, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 0f6b7a0 commit 1b11086
Showing 6 changed files with 10 additions and 13 deletions.
12 changes: 6 additions & 6 deletions rust/perspective-viewer/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -16,7 +16,6 @@ mod symbol;
use yew::{function_component, html, Html, Properties};

use crate::components::column_settings_sidebar::style_tab::column_style::ColumnStyle;
use crate::config::plugin::{PluginAttributes, PluginConfig};
use crate::config::Type;
use crate::custom_events::CustomEvents;
use crate::renderer::Renderer;
Original file line number Diff line number Diff line change
@@ -18,7 +18,6 @@ mod types;
use std::rc::Rc;

use itertools::Itertools;
use serde::{Deserialize, Serialize};
use yew::{html, Html, Properties};

use self::types::{SymbolConfig, SymbolKVPair};
3 changes: 1 addition & 2 deletions rust/perspective-viewer/src/rust/model/export_method.rs
Original file line number Diff line number Diff line change
@@ -15,7 +15,6 @@ use std::rc::Rc;
use yew::prelude::*;

use crate::js::*;
use crate::*;

#[derive(Clone, Copy, Eq, PartialEq)]
pub enum ExportMethod {
@@ -90,7 +89,7 @@ impl From<ExportFile> for Html {
None
};

html_template! {
html! {
<code class={ class }>
{ x.name }
{ x.method.as_filename() }
6 changes: 3 additions & 3 deletions rust/perspective-viewer/tasks/bundle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -21,6 +21,6 @@ path = "main.rs"
bench = false

[dependencies]
flate2 = "1.0.20"
wasm-bindgen-cli-support = "0.2.84"
wasm-opt = "0.112.0"
flate2 = "1.0.28"
wasm-bindgen-cli-support = "0.2.87"
wasm-opt = "0.116.0"
Binary file modified tools/perspective-test/results.tar.gz
Binary file not shown.

0 comments on commit 1b11086

Please sign in to comment.