-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (29 loc) · 921 Bytes
/
Cargo.toml
File metadata and controls
38 lines (29 loc) · 921 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
[workspace]
resolver = "2"
[package]
name = "newbound"
version = "0.1.0"
edition = "2021"
[features]
reload = ["dep:hot-lib-reloader"] # Add subcrates to reload here
serde_support = ["serde","serde_json","flowlang/serde_support","ndata/serde_support","newbound_core/serde_support"]
webview = ["wry"]
java_runtime = ["flowlang/java_runtime"]
python_runtime = ["flowlang/python_runtime"]
javascript_runtime = ["flowlang/javascript_runtime"]
[dependencies]
newbound_core = { path = "./newbound_core" }
flowlang = { version="0.3.28" }
ndata = "0.3.16"
serde = { version = "^1.0", features = ["derive"], optional = true }
serde_json = { version = "^1.0", optional = true }
wry = { version="0.27.0", optional=true }
hot-lib-reloader = { version = "^0.7", optional = true }
aes = "^0.8"
blake2 = "^0.10"
libloading = "0.8"
notify = "6.1.1"
notify-debouncer-full = "0.3.1"
[[bin]]
name = "newbound"
path = "src/main.rs"