-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "nurse"
description = "Help users nurse their programs back to heath"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["commonkestrel"]
rust-version = "1.78"
readme = "README.md"
[dependencies]
url = { version = "2.5.4", optional = true }
colored = { version = "2.1.0", optional = true }
tokio = { version = "1.41.1", features = ["io-util"], optional = true }
smol = { version = "2.0.2", optional = true }
lsp-types = { version = "0.97.0", optional = true }
slotmap = "1.0.7"
concat-idents = "1.1.5"
anstream = "0.6.21"
[features]
default = ["terminal"]
smol = ["dep:smol"]
terminal = ["dep:colored"]
lsp = ["dep:lsp-types", "dep:url"]
[[example]]
name = "math"
[[example]]
name = "terminal"
[dev-dependencies]
logos = "0.14"
[package.metadata.docs.rs]
features = ["terminal", "lsp"]