From bd3879043d5c82aa18c9d3071b513048e789af2d Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Thu, 6 Jan 2022 17:47:14 +0100 Subject: [PATCH] [FIX] Missing comma in TOML dependency A comma was missing in the dependency line for the github repo which caused the Cargo build to fail. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e8b54164..832cb0659 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Then, in your code, all you have to do is: Or, you can track the `trunk` branch, which may be broken and whose API often changes, with: ```toml -iui = { git = "https://github.com/rust-native-ui/libui-rs.git" branch="trunk" } +iui = { git = "https://github.com/rust-native-ui/libui-rs.git", branch="trunk" } ``` We have documentation on [docs.rs](https://docs.rs/iui) for released versions and on [github](https://rust-native-ui.github.io/libui-rs/iui/index.html) for `trunk`.