Merge pull request #329392 from jukremer/markdown-oxide-unstable
markdown-oxide: 0.0.21 → 0.23.1-unstable-2024-07-20
This commit is contained in:
+22
-3
@@ -335,6 +335,12 @@ dependencies = [
|
||||
"const-random",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "do-notation"
|
||||
version = "0.1.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a3e16a80c1dda2cf52fa07106427d3d798b6331dca8155fcb8c39f7fc78f6dd2"
|
||||
|
||||
[[package]]
|
||||
name = "either"
|
||||
version = "1.8.1"
|
||||
@@ -433,6 +439,17 @@ dependencies = [
|
||||
"slab",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fuzzydate"
|
||||
version = "0.2.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7265f35cc1f40c655aad829323a1daef5f21fd38904f6ed9bd5ec3df3cbd851c"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"lazy_static",
|
||||
"thiserror",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "generic-array"
|
||||
version = "0.14.7"
|
||||
@@ -532,9 +549,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "itertools"
|
||||
version = "0.10.5"
|
||||
version = "0.13.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
||||
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
||||
dependencies = [
|
||||
"either",
|
||||
]
|
||||
@@ -625,11 +642,13 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "markdown-oxide"
|
||||
version = "0.1.0"
|
||||
version = "0.23.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"chrono",
|
||||
"config",
|
||||
"do-notation",
|
||||
"fuzzydate",
|
||||
"indexmap",
|
||||
"itertools",
|
||||
"nanoid",
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "markdown-oxide";
|
||||
version = "0.0.21";
|
||||
version = "0.23.1-unstable-2024-07-20";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Feel-ix-343";
|
||||
repo = "markdown-oxide";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-PrsTHAlFFeqyZTsoKvoe19P2ed7xDtOlBgoKftFytVw=";
|
||||
rev = "0f1542a54a44de8313087f6c60e6ecd54f52ede5";
|
||||
hash = "sha256-zxJZnhN2cN3sNd+PHi2jYuHDDA4ekEVIi3X52Z/8TGM=";
|
||||
};
|
||||
|
||||
cargoLock = {
|
||||
@@ -24,8 +25,11 @@ rustPlatform.buildRustPackage rec {
|
||||
meta = with lib; {
|
||||
description = "Markdown LSP server inspired by Obsidian";
|
||||
homepage = "https://github.com/Feel-ix-343/markdown-oxide";
|
||||
license = with licenses; [ cc0 ];
|
||||
maintainers = with maintainers; [ linsui ];
|
||||
license = with licenses; [ gpl3Only ];
|
||||
maintainers = with maintainers; [
|
||||
linsui
|
||||
jukremer
|
||||
];
|
||||
mainProgram = "markdown-oxide";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user