Skip to content

Commit e2f8398

Browse files
2 parents 713d32d + 2d04b74 commit e2f8398

File tree

37 files changed

+73
-76
lines changed

37 files changed

+73
-76
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,10 @@ If you encounter and bugs are have any feature requests, please don't hesitate t
5959

6060
## COMMUNITY PLUGINS
6161

62-
List of cool 3rd part plugins (create a PR to add yours to this list):
63-
62+
List of cool 3rd part plugins and community built shells can be found in [awesome_shrs](https://github.com/MrPicklePinosaur/awesome_shrs). Some notable examples includes
6463
- [shrs_insulter](https://github.com/nithinmuthukumar/shrs_insulter): port of [bash insulter](https://github.com/hkbakke/bash-insulter)
65-
- [shrs_reedline](https://github.com/MrPicklePinosaur/shrs_reedline): adapter layer to use [reedline](https://github.com/nushell/reedline) instead of shrs line
66-
67-
## COMMUNITY SHELLS
68-
69-
Full shells that were built with shrs
64+
- [shrs_openai](https://github.com/MrPicklePinosaur/shrs_openai): chatgpt for your shell
65+
- [shrs_presence](https://github.com/nithinmuthukumar/shrs_presence): show shrs on discord presence
66+
- [shrs_sound](https://github.com/nithinmuthukumar/shrs_sound): play sounds in your shell
7067

71-
- [pinosh](https://github.com/MrPicklePinosaur/pinosh): MrPicklePinosaur's build of shrs
7268

crates/shrs/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]
@@ -31,10 +31,10 @@ anyhow = "1"
3131
lazy_static = "1.4"
3232
log = "0.4"
3333

34-
shrs_core = { path = "../shrs_core", version = "^0.0.4" }
35-
shrs_lang = { path = "../shrs_lang", version = "^0.0.4" }
36-
shrs_job = { path = "../shrs_job", version = "^0.0.4" }
37-
shrs_utils = { path = "../shrs_utils", version = "^0.0.4" }
34+
shrs_core = { path = "../shrs_core", version = "^0.0.5" }
35+
shrs_lang = { path = "../shrs_lang", version = "^0.0.5" }
36+
shrs_job = { path = "../shrs_job", version = "^0.0.5" }
37+
shrs_utils = { path = "../shrs_utils", version = "^0.0.5" }
3838

3939
serde = { version = "1", features = ["derive"], optional = true }
4040

crates/shrs/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/shrs/0.0.4")]
1+
#![doc(html_root_url = "https://docs.rs/shrs/0.0.5")]
22

33
//! **shrs** is a framework for building and configuring your own shell in rust.
44
//!

crates/shrs_core/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_core"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "modular library to build your own shell in rust"
55

66
authors.workspace = true
@@ -29,10 +29,10 @@ skim = "0.10.4"
2929
glob = "0.3.1"
3030

3131

32-
shrs_job = { path = "../shrs_job", version = "^0.0.4" }
33-
shrs_utils = { path = "../shrs_utils", version = "^0.0.4" }
34-
shrs_lang = { path = "../shrs_lang", version = "^0.0.4" }
35-
shrs_vi = { path = "../shrs_vi", version = "^0.0.4" }
32+
shrs_job = { path = "../shrs_job", version = "^0.0.5" }
33+
shrs_utils = { path = "../shrs_utils", version = "^0.0.5" }
34+
shrs_lang = { path = "../shrs_lang", version = "^0.0.5" }
35+
shrs_vi = { path = "../shrs_vi", version = "^0.0.5" }
3636

3737

3838

crates/shrs_job/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_job"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "utilities for managing jobs and processes"
55

66
authors.workspace = true

crates/shrs_lang/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_lang"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "parser and lexer for shrs posix shell"
55
build = "build.rs"
66

@@ -13,7 +13,7 @@ license.workspace = true
1313
repository.workspace = true
1414

1515
[dependencies]
16-
shrs_job = { path = "../shrs_job", version = "^0.0.4" }
16+
shrs_job = { path = "../shrs_job", version = "^0.0.5" }
1717
lalrpop-util = { version = "0.19.8", features = ["lexer"] }
1818
regex = "1"
1919
nix = { version = "0.26", default-features = false, features = ["fs", "term", "process", "signal"]}

crates/shrs_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_utils"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "utilities for shrs"
55

66
authors.workspace = true

crates/shrs_utils/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
<div align="center">
33

4-
# shrs_line
4+
# shrs_utils
55

66
variety of utilities
77

crates/shrs_vi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_vi"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "parser for vi like commands"
55
build = "build.rs"
66

crates/shrs_vi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
<div align="center">
33

4-
# shrs_line
4+
# shrs_vi
55

66
parser for vi grammar
77

0 commit comments

Comments
 (0)