Skip to content

Commit 1be262c

Browse files
committed
Cleanup and small fixes
1 parent 8b60d64 commit 1be262c

File tree

3 files changed

+1
-26
lines changed

3 files changed

+1
-26
lines changed

Cargo.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ comfy-table = "5.0.0"
2121
humantime = "2.1.0"
2222
ndarray = {version = "0.15.3", optional = true}
2323
polars = {version = "0.17.0", features = ["ndarray"], optional = true}
24-
eframe = {version = "0.15.0", optional = true}
2524
url = {version = "2.2.2", optional = true}
2625
temp-file = {version = "0.1.6", optional = true}
2726
csv-sniffer = { version = "0.1.1", optional = true }
@@ -31,9 +30,4 @@ serde_yaml = "0.8.23"
3130
[features]
3231
default = []
3332
nd = ["ndarray"]
34-
gui = ["eframe"]
35-
csv = ["polars", "nd", "url", "temp-file", "minreq", "csv-sniffer"]
36-
37-
[package.metadata.docs.rs]
38-
all-features = true
39-
rustdoc-args = ["--cfg", "docsrs"]
33+
csv = ["polars", "nd", "url", "temp-file", "minreq", "csv-sniffer"]

examples/classification_with_gui.rs

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![warn(rustdoc::missing_doc_code_examples)]
44
#![warn(clippy::missing_docs_in_private_items)]
55
#![doc = include_str!("../README.md")]
6-
#![cfg_attr(docsrs, feature(doc_cfg))]
76

87
pub mod settings;
98
pub use settings::Settings;

0 commit comments

Comments
 (0)