-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 1.63 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
[package]
name = "neosh"
version = "0.1.0"
edition = "2018"
authors = ["Shift", "Vhyrro", "NTBBloodbath"]
description = "A next-gen shell for modern systems"
repository = "https://github.com/neo-sh/neosh"
homepage = "https://github.com/neo-sh/neosh"
license = "GPL-3.0"
readme = "README.md"
include = ["src/*", "Cargo.*", "README.md", "LICENSE"]
[dependencies]
bstr = "0.2.17"
dirs = "4.0.0" # Crossplatform directories manipulation
whoami = "1.2.0" # Utils for fetching user data
crossterm = "0.22.1" # User input handler
tracing = "0.1.29" #
tracing-appender = "0.2.0" # Logging
[target.'cfg(target_os = "windows")'.dependencies.mlua]
version = "0.6.6" # Lua interpreter for Windows
features = ["vendored", "luajit"] # Build LuaJIT on `cargo build`
[target.'cfg(not(target_os = "windows"))'.dependencies.mlua]
version = "0.6.6" # Lua interpreter not for Windows
features = ["luajit"] # Build LuaJIT on `cargo build`
[dependencies.tracing-subscriber] # Logging subscriber
version = "0.3.3" #
features = ["fmt", "env-filter"] #
[dependencies.miette] # Error handling lib
version = "4.2.1" #
features = ["fancy"] # Enable fancy output
[profile.optimized] # Size optimizations that will hurt build speed
inherits = "release" # Which profile we inherit
opt-level = "z" # Optimize for size
codegen-units = 1 # Build speed -> Executable size
strip = true # Remove debug symbols