diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 344a4b1..541eaf5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -29,11 +29,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: RUSTTARGET: ${{ matrix.target }} - EXTRA_FILES: "README.md" SRC_DIR: "src" - ARCHIVE_TYPES: ${{ matrix.archive }} - PRE_BUILD: "pre_build.sh" - POST_BUILD: "test/post_build.sh" MINIFY: "yes" release_without_not_required: name: release ${{ matrix.target }} diff --git a/Cargo.toml b/Cargo.toml index 5a1f6bf..d47b1ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,11 +19,3 @@ opt-level = 'z' # Optimize for size codegen-units = 1 # Reduce number of codegen units to increase optimizations panic = 'abort' # Abort on panic strip = true # Strip symbols from binary* - -# [[bin]] -# name = "chrono-to-ics-cli" -# path = "src/main.rs" - -[[bin]] -name = "chrono-to-ics-gui" -path = "src/gui.rs" diff --git a/README.md b/README.md index 673cad6..95217bd 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,6 @@ this is a app that converts chorono-factorem calendars to `ics` format to be use - [x] fetching holidays and days when timetable is changed. - [x] writing to the `.ics` file using [ical](https://crates.io/crates/ical) crate. - [x] storage of `holidays.json`. - +- [x] gui for the app. ## ToDo : - [ ] implementing timetable changes -- [ ] gui for the app. - -### GUI -it just needs a one text box for the chorno link , a folder dialog box and a button . \ No newline at end of file diff --git a/src/gui.rs b/src/main.rs similarity index 100% rename from src/gui.rs rename to src/main.rs