forked from MrPicklePinosaur/shrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (58 loc) · 1.66 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "shrs"
version = "0.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["MrPicklePinosaur"]
description = "modular library to build your own shell in rust"
homepage = "https://mrpicklepinosaur.github.io/shrs/"
categories = ["command-line-interface", "command-line-utilities", "development-tools"]
keywords = ["shrs", "shell", "posix", "unix"]
readme = "README.md"
repository = "https://github.com/MrPicklePinosaur/shrs"
[workspace]
members = [
"shrs_example",
"crates/shrs_core",
"crates/shrs_line",
"crates/shrs_lang",
"crates/shrs_vi",
"crates/shrs_utils",
"crates/shrs_job",
"plugins/shrs_output_capture",
"plugins/shrs_cd_tools",
"plugins/shrs_command_timer",
"plugins/shrs_derive_completion",
"plugins/shrs_run_context",
"plugins/shrs_mux",
"plugins/shrs_cd_stack",
"plugins/shrs_lang_options"
]
[features]
default = []
[dependencies]
regex = "1"
signal-hook = "0.3"
clap = { version = "4.1", features = ["derive"] }
crossterm = "0.26"
derive_builder = "0.12"
dirs = "5"
pino_deref = "0.1"
thiserror = "1"
anyhow = "1"
lazy_static = "1.4"
shrs_core = { path = "crates/shrs_core", version = "0.0.1-dev" }
shrs_line = { path = "crates/shrs_line", version = "0.0.1-dev" }
shrs_lang = { path = "crates/shrs_lang", version = "0.0.1-dev" }
shrs_job = { path = "crates/shrs_job", version = "0.0.1-dev" }
[dev-dependencies]
rexpect = "0.5"
ron = "0.8"
serde = { version = "1", features = ["derive"] }
criterion = { version = "0.5" }
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]
[[bench]]
name = "bench"
harness = false