-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (45 loc) · 1.65 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
49
50
51
52
53
54
[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
tracing-subscriber.workspace = true
[dev-dependencies]
console-subscriber = "0.4.0"
[workspace]
members = [ "gui" , "lsp"]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Redhawk18"]
license = "MPL-2.0"
[workspace.dependencies]
kuiper_gui = { path = "gui" }
kuiper_lsp = { path = "lsp" }
async-lsp = { version = "0.2" }
futures = "0.3"
iced = { version = "0.14.0-dev", features = ["highlighter", "tokio"] }
iced_aw = { version = "0.12", features = [ "tab_bar"], default-features = false }
iced_fonts = { version = "0.2", features = ["full"] }
iced_runtime = "0.14.0-dev"
pattern_code = "0.1"
rfd = { version = "0.15" }
slotmap = "1.0"
snafu = "0.8"
tokio = { version = "1", features = ["fs", "process", "time", "tracing", "rt"] }
tokio-util = { version = "0.7", features = ["compat"] }
tower = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[patch.crates-io]
iced = { git = 'https://github.com/iced-rs/iced.git' }
iced_core = { git = 'https://github.com/iced-rs/iced.git' }
iced_runtime = { git = 'https://github.com/iced-rs/iced.git' }
iced_widget = { git = 'https://github.com/iced-rs/iced.git' }
iced_aw = { git = 'https://github.com/redhawk18/iced_aw.git' }
iced_fonts = { git = 'https://github.com/redhawk18/iced_fonts.git', branch = "next" }