Skip to content

Commit

Permalink
Merge pull request #10 from ynqa/dev-0.3.0
Browse files Browse the repository at this point in the history
v0.3.0
  • Loading branch information
ynqa authored Mar 14, 2024
2 parents f62f935 + 7adbd8c commit c1e3c3b
Show file tree
Hide file tree
Showing 96 changed files with 6,803 additions and 2,489 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/promkit.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: promkit
name: ci

on: [push]

Expand Down
17 changes: 16 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
/target
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# Ignore GIF files in the tapes directory
tapes/*.gif
11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "promkit"
version = "0.2.0"
version = "0.3.0"
authors = ["ynqa <[email protected]>"]
edition = "2018"
edition = "2021"
description = "A toolkit for building your own interactive command-line tools"
repository = "https://github.com/ynqa/promkit"
license = "MIT"
Expand All @@ -13,9 +13,12 @@ name = "promkit"
path = "src/lib.rs"

[dependencies]
crossterm = "0.27.0"
crossterm = { version = "0.27.0", features = ["use-dev-tty"] }
indexmap = "2.2.3"
libc = "0.2.153"
radix_trie = "0.2.1"
scopeguard = "1.1.0"
serde = { version = "1.0.197" }
serde_json = { version = "1.0.114", features = ["preserve_order"] }
thiserror = "1.0.50"
unicode-width = "0.1.8"

Expand Down
Loading

0 comments on commit c1e3c3b

Please sign in to comment.