summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-05-26 19:02:15 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-05-26 19:02:15 +0200
commit7f3b7075db68a215f4331b4bfba1c8ddd1c4d7f3 (patch)
treefb616dc39053d3249829c8a31976a1fd569153e5 /src/lib.rs
parent3e8f4cdd138d3f927ce8a3ea451cbfcca52af0d9 (diff)
downloadiced-7f3b7075db68a215f4331b4bfba1c8ddd1c4d7f3.tar.gz
iced-7f3b7075db68a215f4331b4bfba1c8ddd1c4d7f3.tar.bz2
iced-7f3b7075db68a215f4331b4bfba1c8ddd1c4d7f3.zip
Rename `theme::Definition` to `application::StyleSheet`
Diffstat (limited to '')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index df40ad3e..277740f3 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -174,18 +174,18 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
)]
-#![deny(missing_docs)]
+//#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![deny(unused_results)]
#![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)]
#![cfg_attr(docsrs, feature(doc_cfg))]
-mod application;
mod element;
mod error;
mod result;
mod sandbox;
+pub mod application;
pub mod clipboard;
pub mod executor;
pub mod keyboard;