mirror of
https://github.com/mempool/mempool.git
synced 2025-02-20 13:34:40 +01:00
Use Cargo workspace
Cargo workspace in the root will help make the IDE experience universal. Cargo.lock and the target directory for build artifacts will be in the root of the mempool repository (with ./target ignored by git).
This commit is contained in:
parent
83bf9229e7
commit
920232be4c
5 changed files with 6 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,3 +5,4 @@ backend/mempool-config.json
|
|||
*.swp
|
||||
frontend/src/resources/config.template.js
|
||||
frontend/src/resources/config.js
|
||||
target
|
||||
|
|
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
|
@ -1,8 +1,5 @@
|
|||
{
|
||||
"editor.tabSize": 2,
|
||||
"typescript.preferences.importModuleSpecifier": "relative",
|
||||
"typescript.tsdk": "./backend/node_modules/typescript/lib",
|
||||
"rust-analyzer.linkedProjects": [
|
||||
"./backend/rust-gbt/Cargo.toml"
|
||||
]
|
||||
"typescript.tsdk": "./backend/node_modules/typescript/lib"
|
||||
}
|
0
backend/rust-gbt/Cargo.lock → Cargo.lock
generated
0
backend/rust-gbt/Cargo.lock → Cargo.lock
generated
4
Cargo.toml
Normal file
4
Cargo.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[workspace]
|
||||
members = [
|
||||
"./backend/rust-gbt",
|
||||
]
|
1
backend/rust-gbt/.gitignore
vendored
1
backend/rust-gbt/.gitignore
vendored
|
@ -1,4 +1,3 @@
|
|||
target
|
||||
index.node
|
||||
**/node_modules
|
||||
**/.DS_Store
|
||||
|
|
Loading…
Add table
Reference in a new issue