e1d734a434
CI / cargo fmt --check (push) Successful in 43s
CI / cargo clippy (push) Successful in 48s
CI / cargo test (push) Successful in 1m26s
Release / build aarch64-unknown-linux-musl (push) Successful in 1m26s
Release / build x86_64-unknown-linux-gnu (push) Successful in 57s
Release / build aarch64-unknown-linux-gnu (push) Successful in 1m5s
Release / build x86_64-unknown-linux-musl (push) Successful in 1m8s
Release / gitea release (push) Successful in 26s
CI / editor keymaps (push) Successful in 1m51s
Bump workspace + internal dep pins + g:nuwiki_version to 0.3.0.
Since 0.2.0:
- feat(config): read g:vimwiki_list on Neovim too (lazy.nvim drop-in)
- feat(config): bridge setup({wikis}) to g:nuwiki_wikis for VimL plugins
- feat(calendar): diary into the current wiki, not always the first
- fix(lsp): resolve links from anywhere in the link, including the title
- fix(install): resolve release asset via Gitea API / direct URL; guard
download_bin.vim against 'compatible' mode
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
23 lines
498 B
TOML
23 lines
498 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/nuwiki-core",
|
|
"crates/nuwiki-lsp",
|
|
"crates/nuwiki-ls",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
rust-version = "1.83"
|
|
authors = ["Gabriel Fróes Franco <gffranco@gmail.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://code.gfran.co/gffranco/nuwiki"
|
|
homepage = "https://code.gfran.co/gffranco/nuwiki"
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[workspace.lints.clippy]
|
|
all = { level = "warn", priority = -1 }
|