zed/extensions/csharp/Cargo.toml
Marshall Bowers df3050dac1
Extract C# support into an extension (#9971)
This PR extracts C# support into an extension and removes the built-in
C# support from Zed.

Tested using a Nix shell:

```
nix-shell -p dotnet-sdk omnisharp-roslyn
```

Release Notes:

- Removed built-in support for C#, in favor of making it available as an
extension. The C# extension will be suggested for download when you open
a `.cs` file.
2024-03-29 16:38:27 -04:00

17 lines
228 B
TOML

[package]
name = "zed_csharp"
version = "0.0.1"
edition = "2021"
publish = false
license = "Apache-2.0"
[lints]
workspace = true
[lib]
path = "src/csharp.rs"
crate-type = ["cdylib"]
[dependencies]
zed_extension_api = "0.0.4"