~repos /rust-embed
git clone https://pyrossh.dev/repos/rust-embed.git
rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
e0820704
—
Mcat12 7 years ago
Ignore editor files
- .gitignore +3 -0
- .vscode/settings.json +0 -82
.gitignore
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
1
1
|
target
|
|
2
2
|
Cargo.lock
|
|
3
|
+
|
|
4
|
+
.vscode
|
|
5
|
+
.idea
|
.vscode/settings.json
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"editor.tabSize": 2,
|
|
3
|
-
"editor.fontSize": 15,
|
|
4
|
-
"editor.wordWrapColumn": 160,
|
|
5
|
-
"editor.minimap.enabled": false,
|
|
6
|
-
"search.exclude": {
|
|
7
|
-
"**/node_modules": true,
|
|
8
|
-
"**/bower_components": true,
|
|
9
|
-
"**/.git": true,
|
|
10
|
-
"**/.DS_Store": true,
|
|
11
|
-
"**/__pycache__": true,
|
|
12
|
-
"**/target": true,
|
|
13
|
-
"**/dist": true,
|
|
14
|
-
"**/.expo": true,
|
|
15
|
-
"**/.cache": true,
|
|
16
|
-
"**/.cache-loader": true,
|
|
17
|
-
},
|
|
18
|
-
"files.exclude": {
|
|
19
|
-
"**/node_modules": true,
|
|
20
|
-
"**/.git": true,
|
|
21
|
-
"**/.DS_Store": true,
|
|
22
|
-
"**/__pycache__": true,
|
|
23
|
-
"**/target": true,
|
|
24
|
-
"**/dist": true,
|
|
25
|
-
"**/.expo": true,
|
|
26
|
-
"**/.cache": true,
|
|
27
|
-
"**/.cache-loader": true,
|
|
28
|
-
},
|
|
29
|
-
"files.watcherExclude": {
|
|
30
|
-
"**/node_modules": true,
|
|
31
|
-
"**/dist": true,
|
|
32
|
-
"**/.git/objects/**": true,
|
|
33
|
-
"**/node_modules/**": true,
|
|
34
|
-
"**/__pycache__": true,
|
|
35
|
-
"**/target": true,
|
|
36
|
-
"**/.expo": true,
|
|
37
|
-
"**/.cache": true,
|
|
38
|
-
"**/.cache-loader": true,
|
|
39
|
-
},
|
|
40
|
-
"workbench.editor.showTabs": false,
|
|
41
|
-
"explorer.openEditors.visible": 0,
|
|
42
|
-
"gitProjectManager.baseProjectsFolders": [
|
|
43
|
-
"~/Code",
|
|
44
|
-
],
|
|
45
|
-
"gitProjectManager.openInNewWindow": true,
|
|
46
|
-
"window.zoomLevel": 0,
|
|
47
|
-
"window.menuBarVisibility": "toggle",
|
|
48
|
-
"workbench.iconTheme": "vscode-icons",
|
|
49
|
-
"git.confirmSync": false,
|
|
50
|
-
"git.enableSmartCommit": true,
|
|
51
|
-
"workbench.startupEditor": "newUntitledFile",
|
|
52
|
-
"gitlens.advanced.messages": {
|
|
53
|
-
"suppressCommitHasNoPreviousCommitWarning": false,
|
|
54
|
-
"suppressCommitNotFoundWarning": false,
|
|
55
|
-
"suppressFileNotUnderSourceControlWarning": false,
|
|
56
|
-
"suppressGitVersionWarning": false,
|
|
57
|
-
"suppressLineUncommittedWarning": false,
|
|
58
|
-
"suppressNoRepositoryWarning": false,
|
|
59
|
-
"suppressResultsExplorerNotice": true,
|
|
60
|
-
"suppressUpdateNotice": true,
|
|
61
|
-
"suppressWelcomeNotice": false
|
|
62
|
-
},
|
|
63
|
-
"workbench.colorTheme": "Dracula Soft",
|
|
64
|
-
"git.autofetch": true,
|
|
65
|
-
"gitlens.keymap": "alternate",
|
|
66
|
-
"sqltools.format": {
|
|
67
|
-
"indentSize": 2
|
|
68
|
-
},
|
|
69
|
-
"sqltools.connections": [
|
|
70
|
-
{
|
|
71
|
-
"name": "Postgres",
|
|
72
|
-
"server": "localhost",
|
|
73
|
-
"dialect": "PostgreSQL",
|
|
74
|
-
"port": 5432,
|
|
75
|
-
"database": "postgres",
|
|
76
|
-
"username": "postgres",
|
|
77
|
-
"askForPassword": false,
|
|
78
|
-
"password": "postgres",
|
|
79
|
-
"connectionTimeout": 300
|
|
80
|
-
}
|
|
81
|
-
]
|
|
82
|
-
}
|