Rename internal crates and add a README.md to them

The README.md contains the warning that used to be in lib.rs.

Add README.md files to all internal crates

... pointing to the official public crate to use instead.

Rename internal crates

fixup: README files

fixup rename
This commit is contained in:
Tobias Hunger 2022-02-07 11:14:19 +01:00
parent c245c0f941
commit de4e195280
No known key found for this signature in database
GPG key ID: 60874021D2F23F91
124 changed files with 867 additions and 996 deletions

View file

@ -216,7 +216,7 @@ impl<T: Clone> SharedVector<T> {
/// If the array was bigger, extra elements will be discarded
///
/// ```
/// use slint_core_internal::SharedVector;
/// use i_slint_core::SharedVector;
/// let mut shared_vector = SharedVector::<u32>::from_slice(&[1, 2, 3]);
/// shared_vector.resize(5, 8);
/// assert_eq!(shared_vector.as_slice(), &[1, 2, 3, 8, 8]);