Skip to content

Commit

Permalink
Pure rust basic bash implementation, should be easier to get it to wo…
Browse files Browse the repository at this point in the history
…rk on windows
  • Loading branch information
zakstucke committed Jan 25, 2024
1 parent a88ba1d commit f7b3855
Show file tree
Hide file tree
Showing 11 changed files with 788 additions and 147 deletions.
75 changes: 20 additions & 55 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 12 additions & 10 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,20 @@ comfy-table = '7.1'
error-stack = '0.4'
once_cell = '1.18'
regex = '1.10'
shlex = '1.2'
tracing = '0.1'
tracing-appender = '0.2'

[dependencies.bitbazaar]
features = []
version = '0.0.20'
[dependencies.conch-parser]
version = '0.1.1'
optional = true

[dependencies.homedir]
version = '0.2.1'
optional = true

[dependencies.strum]
features = ['derive']
version = '0.25'

[dependencies.clap]
features = ['derive', 'string']
Expand Down Expand Up @@ -48,10 +55,6 @@ features = ['aio', 'json']
optional = true
version = '0.24'

[dependencies.run_script]
optional = true
version = '0.10'

[dependencies.serde]
features = ['derive']
optional = true
Expand Down Expand Up @@ -82,7 +85,6 @@ features = ['fmt', 'std', 'time']
version = '0.3'

[dev-dependencies]
homedir = '0.2.1'
portpicker = '0.1.1'
rstest = '0.18.2'
serial_test = '2.0'
Expand All @@ -94,7 +96,7 @@ features = ['v4']
version = '1.6.1'

[features]
cli = ['dep:run_script']
cli = ['dep:homedir', 'dep:conch-parser']
opentelemetry = ['dep:tracing-opentelemetry', 'dep:opentelemetry', 'dep:opentelemetry-otlp', 'dep:opentelemetry_sdk', 'dep:tonic']
redis = ['dep:deadpool-redis', 'dep:redis', 'dep:serde', 'dep:serde_json', 'dep:sha1_smol']

Expand Down
Loading

0 comments on commit f7b3855

Please sign in to comment.