Skip to content

Commit e3d40dc

Browse files
Fixes format.
Signed-off-by: Franco Cipollone <franco.c@ekumenlabs.com>
1 parent d968535 commit e3d40dc

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

.rustfmt.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
edition = "2024"
12
max_width = 120
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
[package]
22
name = "dora_string_publisher_ui"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = { workspace = true }
5+
license = { workspace = true }
6+
repository = { workspace = true }
7+
authors = { workspace = true }
58

69
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
710

811
[dependencies]
9-
dora-node-api = "0.3.11"
12+
dora-node-api = { workspace = true}
1013
eframe = "0.31"

dora_node_hub/dora_string_publisher_ui/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use dora_node_api::{arrow::array::StringArray, dora_core::config::DataId, DoraNode};
1+
use dora_node_api::{DoraNode, arrow::array::StringArray, dora_core::config::DataId};
22
use eframe::{App, Frame};
33

44
// Struct to hold the application's state

0 commit comments

Comments
 (0)