-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (40 loc) · 1.36 KB
/
Cargo.toml
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
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "kuiper"
description = "A blazing fast Integrated Development Environment, meant to give power back to developers."
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
kuiper_gui.workspace = true
tokio.workspace = true
pretty_env_logger.workspace = true
[dev-dependencies]
console-subscriber = "0.4.0"
[workspace]
members = [ "gui" , "lsp"]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Redhawk18"]
license = "MPL-2.0"
[workspace.dependencies]
kuiper_gui = { path = "gui" }
kuiper_lsp = { path = "lsp" }
async-lsp = { version = "0.2", features = ["tokio"] }
dark-light = "1.0"
iced = { version = "0.13.1", features = ["advanced", "tokio"] }
iced_aw = { version = "0.10", features = ["icons", "tab_bar"], default-features = false }
log = "0.4"
pattern_code = "0.1"
pretty_env_logger = "0.5"
rfd = { version = "0.15", features = ["xdg-portal", "tokio"], default-features = false}
slotmap = "1.0"
snafu = "0.8"
tokio = { version = "1", features = ["fs", "process", "tracing"] }
tokio-util = { version = "0.7", features = ["compat"] }
tower = "0.4"
[patch.crates-io]
# iced = { git = 'https://github.com/iced-rs/iced.git' }
# iced_aw = { git = 'https://github.com/iced-rs/iced_aw.git' }