File tree Expand file tree Collapse file tree 4 files changed +18
-9
lines changed
crates/rs-os/rs-macos/try-notification Expand file tree Collapse file tree 4 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ members = [
15
15
" crates/rs-cli" ,
16
16
" crates/rs-ffi" ,
17
17
" crates/rs-ffi-core" ,
18
+ " crates/rs-os/rs-macos/try-notification" ,
18
19
# "crates/rs-tonic",
19
20
# "crates/rs-tauri-vue/src-tauri",
20
21
# "crates/rs-sqlcipher",
Original file line number Diff line number Diff line change @@ -118,17 +118,14 @@ tasks:
118
118
vars :
119
119
APP_NAME : " crates/rs-cms-migration"
120
120
121
- new :
122
- cmds :
123
- - cd ${WORKSPACE}; cargo new --lib ${NEW_PROJECT_NAME}
124
121
125
- new:bin :
126
- cmds :
127
- - cd ${WORKSPACE}; cargo new ${NEW_PROJECT_NAME}
128
-
129
- new:lib :
122
+ # usage :
123
+ # - task n -- --lib tmp/demo1
124
+ # - task n -- --bin tmp/demo2
125
+ new :
126
+ aliases : [ "n" ]
130
127
cmds :
131
- - cd ${WORKSPACE}; cargo new --lib ${NEW_PROJECT_NAME }
128
+ - cargo new {{.CLI_ARGS} }
132
129
133
130
# ###############################################################################
134
131
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ name = " try-notification"
3
+ version = " 0.1.0"
4
+ edition = " 2021"
5
+
6
+ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
+
8
+ [dependencies ]
Original file line number Diff line number Diff line change
1
+ fn main ( ) {
2
+ println ! ( "Hello, world!" ) ;
3
+ }
You can’t perform that action at this time.
0 commit comments