We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d5da49 commit 138fd49Copy full SHA for 138fd49
packages/ferric/README.md
@@ -11,7 +11,20 @@ A wrapper around Cargo making it easier to produce prebuilt binaries targeting i
11
```json
12
"scripts": {
13
"generate": "ferric generate folder_name",
14
- "build": "ferric build --path folder_path",
+ "build": "ferric build --path folder_name_path",
15
"build:release": "npm run build --configuration release",
16
},
17
```
18
+
19
+### Project Structure
20
21
+After generating the project, a folder would be created with the following file structure for the lib.
22
23
+```markdown
24
+lib_name
25
+│ Cargo.toml
26
+│ build.rs
27
+│ .gitignore
28
+└───src
29
+│ │ lib.rs
30
+```
0 commit comments