You've already forked AstralRinth
forked from didirus/AstralRinth
Finish theseus
This commit is contained in:
@@ -6,7 +6,7 @@ edition = "2021"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
theseus = { path = "../theseus", features = ["cli"] }
|
||||
theseus = { path = "../../libs/theseus", features = ["cli"] }
|
||||
|
||||
serde_json = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
||||
55
apps/theseus_playground/project.json
Normal file
55
apps/theseus_playground/project.json
Normal file
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"name": "theseus_playground",
|
||||
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||||
"projectType": "application",
|
||||
"sourceRoot": "apps/theseus_playground/src",
|
||||
"targets": {
|
||||
"build": {
|
||||
"cache": true,
|
||||
"executor": "@monodon/rust:build",
|
||||
"outputs": ["{options.target-dir}"],
|
||||
"options": {
|
||||
"target-dir": "dist/target/theseus_playground"
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"release": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"cache": true,
|
||||
"executor": "@monodon/rust:test",
|
||||
"outputs": ["{options.target-dir}"],
|
||||
"options": {
|
||||
"target-dir": "dist/target/theseus_playground"
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"release": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"cache": true,
|
||||
"executor": "@monodon/rust:lint",
|
||||
"outputs": ["{options.target-dir}"],
|
||||
"options": {
|
||||
"target-dir": "dist/target/theseus_playground"
|
||||
}
|
||||
},
|
||||
"run": {
|
||||
"executor": "@monodon/rust:run",
|
||||
"outputs": ["{options.target-dir}"],
|
||||
"options": {
|
||||
"target-dir": "dist/target/theseus_playground"
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"release": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": []
|
||||
}
|
||||
Reference in New Issue
Block a user