diff options
| -rw-r--r-- | .vscode/settings.json | 15 | ||||
| -rw-r--r-- | .zed/settings.json | 29 | ||||
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | Cargo.toml | 6 | ||||
| -rw-r--r-- | rust-analyzer.toml | 14 | ||||
| -rw-r--r-- | src/main.rs | 1 |
6 files changed, 25 insertions, 44 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 71ced58..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "rust-analyzer.check.command": "clippy", - "rust-analyzer.checkOnSave": true, - "rust-analyzer.files.exclude": ["**/target/**", "**/.temp/**"], - "rust-analyzer.linkedProjects": [ - ".run/Cargo.toml", - "mingling_pathf/test/Cargo.toml", - "arg_picker/Cargo.toml", - "arg_picker/test/Cargo.toml", - "mingling_cli/Cargo.toml" - ], - "rust-analyzer.cargo.features": [], - "rust-analyzer.procMacro.enable": true, - "rust-analyzer.procMacro.attributes.enable": true -} diff --git a/.zed/settings.json b/.zed/settings.json deleted file mode 100644 index 7378109..0000000 --- a/.zed/settings.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "lsp": { - "rust-analyzer": { - "initialization_options": { - "checkOnSave": true, - "check": { "command": "clippy" }, - "files": { - "exclude": ["**/target/**", "**/.temp/**"] - }, - "linkedProjects": [ - ".run/Cargo.toml", - "mingling_pathf/test/Cargo.toml", - "arg_picker/Cargo.toml", - "arg_picker/test/Cargo.toml", - "mingling_cli/Cargo.toml" - ], - "cargo": { - "features": [] - }, - "procMacro": { - "enable": true, - "attributes": { - "enable": true - } - } - } - } - } -} @@ -270,6 +270,10 @@ dependencies = [ ] [[package]] +name = "mingling-workspace" +version = "0.3.0" + +[[package]] name = "mingling_core" version = "0.3.0" dependencies = [ @@ -77,3 +77,9 @@ lto = "fat" codegen-units = 1 panic = "abort" strip = true + +[package] +name = "mingling-workspace" +version.workspace = true +edition.workspace = true +publish = false diff --git a/rust-analyzer.toml b/rust-analyzer.toml new file mode 100644 index 0000000..01ed82d --- /dev/null +++ b/rust-analyzer.toml @@ -0,0 +1,14 @@ +[rust-analyzer] +check.command = "clippy" +checkOnSave = true +files.exclude = ["**/target/**", "**/.temp/**"] +linkedProjects = [ + ".run/Cargo.toml", + "mingling_pathf/test/Cargo.toml", + "arg_picker/Cargo.toml", + "arg_picker/test/Cargo.toml", + "mingling_cli/Cargo.toml" +] +cargo.features = [] +procMacro.enable = true +procMacro.attributes.enable = true diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..f328e4d --- /dev/null +++ b/src/main.rs @@ -0,0 +1 @@ +fn main() {} |
