Skip to content

Commit

Permalink
Fix warnings & update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
texodus committed Oct 27, 2023
1 parent 1117f61 commit d453b18
Show file tree
Hide file tree
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
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down
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
Expand Up @@ -15,7 +15,6 @@ use std::rc::Rc;
use yew::prelude::*;

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

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

html_template! {
html! {
<code class={ class }>
{ x.name }
{ x.method.as_filename() }
Expand Down
6 changes: 3 additions & 3 deletions rust/perspective-viewer/tasks/bundle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 d453b18

Please sign in to comment.