Skip to content

Commit df7bc60

Browse files
committed
Update deps
1 parent 0b9e68f commit df7bc60

File tree

3 files changed

+18
-25
lines changed

3 files changed

+18
-25
lines changed

Cargo.lock

Lines changed: 11 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fresh-editor"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
authors = ["Noam Lewis"]
55
edition = "2021"
66
description = "A lightweight, fast terminal-based text editor with LSP support and TypeScript plugins"
@@ -41,7 +41,7 @@ regex = "1.12"
4141
ctrlc = "3.5"
4242
libc = "0.2"
4343
nix = { version = "0.30", features = ["signal", "pthread", "resource"] }
44-
deno_core = "0.272.0" # TypeScript plugin runtime (stable version)
44+
deno_core = { version = "0.272.0" , default-features = false } # TypeScript plugin runtime (stable version)
4545
deno_ast = { version = "0.51.0", features = ["transpiling"] } # TypeScript transpilation
4646
tree-sitter-python = "0.25.0"
4747
tree-sitter-javascript = "0.25.0"
@@ -59,16 +59,16 @@ tree-sitter-ruby = "0.23.1"
5959
tree-sitter-bash = "0.25.0"
6060
tree-sitter-lua = "0.2.0"
6161
anyhow = "1.0.100"
62-
dirs = "5.0" # For XDG/platform-specific directory detection
63-
pulldown-cmark = "0.12" # Markdown parsing for LSP hover docs
64-
arboard = "3.4" # Cross-platform system clipboard access
62+
dirs = "6.0" # For XDG/platform-specific directory detection
63+
pulldown-cmark = "0.13" # Markdown parsing for LSP hover docs
64+
arboard = "3.6" # Cross-platform system clipboard access
6565
notify = "8.2.0"
6666
# tree-sitter-markdown = "0.7.1" # Disabled due to tree-sitter version conflict (uses 0.19.5 instead of 0.25.x)
6767

6868
[dev-dependencies]
6969
proptest = "1.9"
7070
tempfile = "3.23.0"
71-
insta = { version = "1.43", features = ["yaml"] }
71+
insta = { version = "1.44", features = ["yaml"] }
7272
vt100 = "0.15" # Virtual terminal emulator for testing real ANSI output
7373

7474
[profile.release]

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cargo-dist-version = "0.30.2"
88
# CI backends to support
99
ci = "github"
1010
# The installers to generate for each app
11-
installers = ["shell"]
11+
installers = ["npm"]
1212
# Target platforms to build apps for (Rust target-triple syntax)
1313
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
1414
# Path that installers should place binaries in

0 commit comments

Comments
 (0)