You've already forked AstralRinth
forked from didirus/AstralRinth
Prepare for adding theseus
This commit is contained in:
10
apps/theseus_playground-tpl/Cargo.toml
Normal file
10
apps/theseus_playground-tpl/Cargo.toml
Normal file
@@ -0,0 +1,10 @@
|
||||
[package]
|
||||
name = "theseus_playground"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
|
||||
[dependencies]
|
||||
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
55
apps/theseus_playground-tpl/project.json
Normal file
55
apps/theseus_playground-tpl/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": []
|
||||
}
|
||||
4
apps/theseus_playground-tpl/src/main.rs
Normal file
4
apps/theseus_playground-tpl/src/main.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user