-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
38 lines (34 loc) · 977 Bytes
/
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
[package]
name = "beacon"
description = "Native GUI for BQN"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.103"
once_cell = "1.18"
async-std = "1.12.0"
directories-next = "2.0"
cbqn = { version = "0.1.0", default-features = false, optional = true }
phf = "0.11.1"
unicode-segmentation = "1.10.1"
iced = { git = "https://github.com/iced-rs/iced", features = [
"async-std",
"debug",
"lazy",
"svg",
"advanced",
"markdown",
"highlighter",
], rev = "dcdf1307006883f50083c186ca7b8656bfa60873" }
iced_runtime = { git = "https://github.com/iced-rs/iced", rev = "dcdf1307006883f50083c186ca7b8656bfa60873" }
ngnk = { version = "0.2.3", optional = true }
[package.metadata.bundle]
name = "Beacon"
identifier = "io.github.me.bqn"
icon = ["assets/[email protected]"]
[features]
default = ["bqnnative"]
k = ["dep:ngnk"]
bqnnative = ["cbqn/native-backend"]
bqnwasm = ["cbqn/wasi-backend"]