Update ARCHITECTURE.md (#2889)

This commit is contained in:
Oleg Dovger
2021-11-14 20:05:36 +03:00
committed by GitHub
parent 4e3b366e64
commit a67e736d4a

View File

@@ -8,7 +8,7 @@ Tauri is a polyglot and generic toolkit that is very composable and allows engin
Tauri apps can have custom menus and have tray-type interfaces. They can be updated, and are managed by the user's operating system as expected. They are very small, because they use the OS's webview. They do not ship a runtime, since the final binary is compiled from Rust. This makes the reversing of Tauri apps not a trivial task.
## What Tauri is NOT
- Tauri is not a lightweight kernel wrapper...instead it directly uses [WRY](https://github.com/tauri-apps/tauri/blob/dev/ARCHITECTURE.md#wry) and [TAO](https://github.com/tauri-apps/tauri/blob/dev/ARCHITECTURE.md#tao) to do the heavy-lifting in making system calls to the OS.
- Tauri is not a lightweight kernel wrapper...instead it directly uses [WRY](#wry) and [TAO](#tao) to do the heavy-lifting in making system calls to the OS.
- Tauri is not a VM or virtualized environment...instead it is an application toolkit that allows making Webview OS applications.
## Major Components