diff options
author | 2019-11-20 09:56:16 +0100 | |
---|---|---|
committer | 2019-11-20 09:56:16 +0100 | |
commit | 4b94cf00351f09fa916ebb1d89e4cdf4622fd800 (patch) | |
tree | eaa62b6fc4366679ce2c2e6b5aad6c80528a8b47 /README.md | |
parent | cb4827059fdb34fa9b0cea714fb81b28741a08e7 (diff) | |
download | iced-4b94cf00351f09fa916ebb1d89e4cdf4622fd800.tar.gz iced-4b94cf00351f09fa916ebb1d89e4cdf4622fd800.tar.bz2 iced-4b94cf00351f09fa916ebb1d89e4cdf4622fd800.zip |
Add installation section to subcrate `README`s
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -27,8 +27,9 @@ Inspired by [Elm]. * [Debug overlay with performance metrics] * First-class support for async actions (use futures!) * [Modular ecosystem] split into reusable parts: - * A [default renderer] supporting Vulkan, Metal, DX11, and DX12 * A [renderer-agnostic native runtime] enabling integration with existing systems + * A [built-in renderer] supporting Vulkan, Metal, DX11, and DX12 + * A [windowing shell] * A [web runtime] leveraging the DOM __Iced is currently experimental software.__ [Take a look at the roadmap], @@ -41,7 +42,8 @@ __Iced is currently experimental software.__ [Take a look at the roadmap], [Modular ecosystem]: https://github.com/hecrj/iced/blob/master/ECOSYSTEM.md [renderer-agnostic native runtime]: https://github.com/hecrj/iced/tree/master/native [`wgpu`]: https://github.com/gfx-rs/wgpu-rs -[Default renderer]: https://github.com/hecrj/iced/tree/master/wgpu +[built-in renderer]: https://github.com/hecrj/iced/tree/master/wgpu +[windowing shell]: https://github.com/hecrj/iced/tree/master/winit [`dodrio`]: https://github.com/fitzgen/dodrio [web runtime]: https://github.com/hecrj/iced/tree/master/web [Take a look at the roadmap]: https://github.com/hecrj/iced/blob/master/ROADMAP.md @@ -52,7 +54,7 @@ __Iced is currently experimental software.__ [Take a look at the roadmap], Add `iced` as a dependency in your `Cargo.toml`: ```toml -iced = "0.1" +iced = "0.1.0-beta" ``` __Iced moves fast and the `master` branch can contain breaking changes!__ If |