Rename iced_native to iced_runtime

This commit is contained in:
Héctor Ramón Jiménez 2023-03-05 06:35:20 +01:00
parent 8af69be47e
commit 99e0a71504
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
39 changed files with 87 additions and 97 deletions

View file

@ -215,7 +215,7 @@ pub trait Application: Sized {
struct Instance<A: Application>(A);
impl<A> crate::native::Program for Instance<A>
impl<A> crate::runtime::Program for Instance<A>
where
A: Application,
{