-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlang.json
More file actions
46 lines (46 loc) · 914 Bytes
/
lang.json
File metadata and controls
46 lines (46 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "rust",
"version": 2,
"system_support": [
"linux",
"windows",
"done"
],
"lib_support": false,
"build_file_path": {
"makefile": "c/makefile",
"bash": "c/build.sh"
},
"compiler_urls": [
"done"
],
"description": "The rust coding langugae",
"template_author": "KingVentrix007",
"git_repo": "https://github.com/KingVentrix007/CodeStarterFiles/tree/main/langs/",
"default_main_file": "main.rs",
"extensions": [
".rs",
"done"
],
"dependencies": [],
"instructions": "Use it",
"template_version": "",
"update_url": "N/A",
"git_ignore_path": "rust/.gitignore",
"folders_to_create": [
"src",
"lib",
"done"
],
"files_to_include": [
"done"
],
"commands_to_run": [
"echo cats",
"done"
],
"main_file_path": "src/main.rs",
"comment": "//",
"compiler_cmd": "rust -rs",
"package_install": "cargo install"
}