You've already forked architect
Restructure crates and update configs
This commit is contained in:
+12
-15
@@ -1,18 +1,10 @@
|
|||||||
{
|
{
|
||||||
"project_name": null,
|
|
||||||
|
|
||||||
"auto_install_extensions": {
|
|
||||||
"tombi": true,
|
|
||||||
"cargo-appraiser": true
|
|
||||||
},
|
|
||||||
|
|
||||||
"languages": {
|
"languages": {
|
||||||
"TOML": {
|
"TOML": {
|
||||||
"format_on_save": "on",
|
"format_on_save": "on",
|
||||||
"formatter": { "language_server": { "name": "tombi" } }
|
"formatter": { "language_server": { "name": "tombi" } },
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
"lsp": {
|
"lsp": {
|
||||||
"rust-analyzer": {
|
"rust-analyzer": {
|
||||||
"initialization_options": {
|
"initialization_options": {
|
||||||
@@ -20,9 +12,14 @@
|
|||||||
"granularity": { "enforce": true, "group": "module" },
|
"granularity": { "enforce": true, "group": "module" },
|
||||||
"group": { "enable": true },
|
"group": { "enable": true },
|
||||||
"merge": { "glob": false },
|
"merge": { "glob": false },
|
||||||
"preferNoStd": true
|
"preferNoStd": true,
|
||||||
}
|
},
|
||||||
}
|
"server": {
|
||||||
}
|
"extraEnv": {
|
||||||
}
|
"RUSTUP_TOOLCHAIN": "stable",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-1
@@ -3,4 +3,5 @@ How to Contribute
|
|||||||
|
|
||||||
We'd love to accept your patches and contributions to this project.
|
We'd love to accept your patches and contributions to this project.
|
||||||
We just need you to follow the Contributor License Agreement outlined
|
We just need you to follow the Contributor License Agreement outlined
|
||||||
in the latest v0.0.x of https://github.com/Skrunix/license
|
in the latest v0.0.x of https://git.skrundz.dev/skrunix/license
|
||||||
|
(mirrored to https://github.com/skrunix/license)
|
||||||
|
|||||||
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = ["architect", "sample"]
|
members = ["crates/*"]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
license-file = "LICENSE.md"
|
license-file = "LICENSE.md"
|
||||||
@@ -9,8 +9,8 @@ edition = "2024"
|
|||||||
rust-version = "1.85.0"
|
rust-version = "1.85.0"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
architect = { path = "architect", version = "=0.0.0", default-features = false }
|
architect = { path = "crates/architect", version = "=0.0.0", default-features = false }
|
||||||
sample = { path = "sample", version = "=0.0.0", default-features = false }
|
sample = { path = "crates/sample", version = "=0.0.0", default-features = false }
|
||||||
|
|
||||||
paste = { version = "^1", default-features = false }
|
paste = { version = "^1", default-features = false }
|
||||||
|
|
||||||
|
|||||||
@@ -3,3 +3,9 @@ toml-version = "v1.0.0"
|
|||||||
[format.rules]
|
[format.rules]
|
||||||
indent-style = "tab"
|
indent-style = "tab"
|
||||||
indent-width = 4
|
indent-width = 4
|
||||||
|
|
||||||
|
# Required for rust <1.94
|
||||||
|
[[schemas]]
|
||||||
|
toml-version = "v1.0.0"
|
||||||
|
path = "tombi://www.schemastore.org/cargo.json"
|
||||||
|
include = ["Cargo.toml"]
|
||||||
|
|||||||
Reference in New Issue
Block a user