-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (49 loc) 路 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (49 loc) 路 1.13 KB
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
55
56
[package]
name = "valin"
version = "0.29.0"
edition = "2024"
description = "A code editor built with Freya and Rust"
authors = ["Marc Esp铆n <mespinsanz@gmail.com>"]
license = "MIT"
readme = "readme.md"
repository = "https://github.com/marc2332/valin"
[features]
devtools = ["freya/devtools"]
[dependencies]
freya = { version = "0.4.0-rc.22", features = [
"markdown",
"radio",
"code-editor",
"icons",
] }
freya-performance-plugin = "0.4.0-rc.22"
async-io = "2.5.0"
ropey = "1.6.0"
smallvec = "1.10.0"
rfd = "0.17.2"
futures-channel = "0.3.31"
futures = "0.3.28"
smol = "2.0.2"
clap = { version = "4.5.4", features = ["derive"] }
async-trait = "0.1.80"
toml = "0.8.12"
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1"
include_dir = "0.7"
home = "0.5.9"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
notify = "6.1.1"
rustc-hash = "2.1.1"
ignore = "0.4.23"
[target.'cfg(target_os = "linux")'.dependencies]
xcursor = "0.3"
[profile.release]
panic = "abort"
lto = true
codegen-units = 1
strip = true
rpath = false
debug = false
debug-assertions = false
overflow-checks = false