-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (29 loc) · 942 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
[package]
name = "evalvana"
version = "0.1.0-alpha.1"
authors = ["ThatsNoMoon <git@thatsnomoon.dev>"]
repository = "https://github.com/ThatsNoMoon/evalvana"
description = "An early WIP REPL environment for any language with a plugin."
readme = "README.md"
license = "AGPL-3.0-only"
edition = "2021"
[dependencies]
anyhow = "1.0"
dirs = "4.0"
env_logger = "0.9"
evalvana-api = { path = "./plugins/api" }
evalvana-editor = { path = "./editor" }
futures = { version = "0.3", features = ["executor"] }
getrandom = "0.2"
iced = { version = "0.4", features = ["tokio"] }
iced_futures = { version = "0.4", features = ["tokio"] }
iced_native = "0.5"
lazy-regex = "2.2"
png = "0.17"
serde = "1.0"
serde_json = "1.0"
tokio = { version = "1.10", features = ["process", "io-util", "fs", "rt-multi-thread"] }
tokio-stream = { version = "0.1", features = ["io-util", "fs"] }
which = "4.2"
[workspace]
members = ["editor", "plugins/cargo", "plugins/api"]