diff options
| author | 2022-02-11 17:50:12 +0700 | |
|---|---|---|
| committer | 2022-02-11 17:50:12 +0700 | |
| commit | 897188317b5875cc00a0f1c797790df8ac13687f (patch) | |
| tree | 2a2eeedc8d582f616eaa0030000d15d403c1092b /examples/pure/counter/Cargo.toml | |
| parent | e03de019881f31d69b70a64c3e278ae5200d5080 (diff) | |
| download | iced-897188317b5875cc00a0f1c797790df8ac13687f.tar.gz iced-897188317b5875cc00a0f1c797790df8ac13687f.tar.bz2 iced-897188317b5875cc00a0f1c797790df8ac13687f.zip | |
Rename `iced_virtual` to `iced_pure`
`virtual` is a reserved keyword in Rust :grimacing:
Diffstat (limited to 'examples/pure/counter/Cargo.toml')
| -rw-r--r-- | examples/pure/counter/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/pure/counter/Cargo.toml b/examples/pure/counter/Cargo.toml new file mode 100644 index 00000000..1363bfd5 --- /dev/null +++ b/examples/pure/counter/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "pure_counter" +version = "0.1.0" +authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../../.." } +iced_pure = { path = "../../../pure" } |
