From 46f4b6e7bca5a8d2dea7fb0882d914fecc9cee86 Mon Sep 17 00:00:00 2001 From: Yuri Karamian Date: Mon, 9 Feb 2026 01:44:45 +0100 Subject: [PATCH] v1.0.0 - Initial release --- .gitignore | 33 + .npmrc | 1 + LICENSE | 661 +++ README.md | 62 + package.json | 68 + pnpm-lock.yaml | 2403 ++++++++ src-tauri/.gitignore | 4 + src-tauri/Cargo.lock | 6885 ++++++++++++++++++++++ src-tauri/Cargo.toml | 40 + src-tauri/build.rs | 3 + src-tauri/capabilities/default.json | 50 + src-tauri/icons/128x128.png | Bin 0 -> 4065 bytes src-tauri/icons/128x128@2x.png | Bin 0 -> 8548 bytes src-tauri/icons/32x32.png | Bin 0 -> 953 bytes src-tauri/icons/Square107x107Logo.png | Bin 0 -> 3601 bytes src-tauri/icons/Square142x142Logo.png | Bin 0 -> 4561 bytes src-tauri/icons/Square150x150Logo.png | Bin 0 -> 4087 bytes src-tauri/icons/Square284x284Logo.png | Bin 0 -> 9647 bytes src-tauri/icons/Square30x30Logo.png | Bin 0 -> 793 bytes src-tauri/icons/Square310x310Logo.png | Bin 0 -> 10553 bytes src-tauri/icons/Square44x44Logo.png | Bin 0 -> 1352 bytes src-tauri/icons/Square71x71Logo.png | Bin 0 -> 2282 bytes src-tauri/icons/Square89x89Logo.png | Bin 0 -> 2863 bytes src-tauri/icons/StoreLogo.png | Bin 0 -> 1596 bytes src-tauri/icons/icon.icns | Bin 0 -> 17997 bytes src-tauri/icons/icon.ico | Bin 0 -> 4286 bytes src-tauri/icons/icon.png | Bin 0 -> 17840 bytes src-tauri/src/ai.rs | 405 ++ src-tauri/src/backup.rs | 269 + src-tauri/src/commands.rs | 1341 +++++ src-tauri/src/history.rs | 171 + src-tauri/src/lib.rs | 138 + src-tauri/src/main.rs | 6 + src-tauri/src/search/mod.rs | 175 + src-tauri/src/state.rs | 23 + src-tauri/src/types.rs | 244 + src-tauri/src/vault/frontmatter.rs | 315 + src-tauri/src/vault/mod.rs | 3 + src-tauri/src/vault/operations.rs | 677 +++ src-tauri/src/vault/watcher.rs | 73 + src-tauri/tauri.conf.json | 60 + src/app.css | 151 + src/app.d.ts | 13 + src/app.html | 11 + src/lib/api.ts | 309 + src/lib/assets/favicon.svg | 1 + src/lib/components/AppLayout.svelte | 288 + src/lib/components/CommandPalette.svelte | 229 + src/lib/components/Editor.svelte | 5092 ++++++++++++++++ src/lib/components/GraphView.svelte | 522 ++ src/lib/components/InfoPanel.svelte | 388 ++ src/lib/components/NoteList.svelte | 1136 ++++ src/lib/components/ResizeHandle.svelte | 28 + src/lib/components/SearchPanel.svelte | 383 ++ src/lib/components/SettingsPanel.svelte | 1928 ++++++ src/lib/components/Sidebar.svelte | 762 +++ src/lib/components/TitleBar.svelte | 222 + src/lib/components/VaultPicker.svelte | 263 + src/lib/index.ts | 1 + src/lib/stores/app.ts | 97 + src/lib/types.ts | 132 + src/lib/utils/debounce.ts | 7 + src/lib/utils/time.ts | 26 + src/routes/+layout.svelte | 77 + src/routes/+layout.ts | 2 + src/routes/+page.svelte | 118 + static/robots.txt | 3 + svelte.config.js | 12 + tsconfig.json | 20 + vite.config.ts | 26 + 70 files changed, 26357 insertions(+) create mode 100644 .gitignore create mode 100644 .npmrc create mode 100644 LICENSE create mode 100644 README.md create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 src-tauri/.gitignore create mode 100644 src-tauri/Cargo.lock create mode 100644 src-tauri/Cargo.toml create mode 100644 src-tauri/build.rs create mode 100644 src-tauri/capabilities/default.json create mode 100644 src-tauri/icons/128x128.png create mode 100644 src-tauri/icons/128x128@2x.png create mode 100644 src-tauri/icons/32x32.png create mode 100644 src-tauri/icons/Square107x107Logo.png create mode 100644 src-tauri/icons/Square142x142Logo.png create mode 100644 src-tauri/icons/Square150x150Logo.png create mode 100644 src-tauri/icons/Square284x284Logo.png create mode 100644 src-tauri/icons/Square30x30Logo.png create mode 100644 src-tauri/icons/Square310x310Logo.png create mode 100644 src-tauri/icons/Square44x44Logo.png create mode 100644 src-tauri/icons/Square71x71Logo.png create mode 100644 src-tauri/icons/Square89x89Logo.png create mode 100644 src-tauri/icons/StoreLogo.png create mode 100644 src-tauri/icons/icon.icns create mode 100644 src-tauri/icons/icon.ico create mode 100644 src-tauri/icons/icon.png create mode 100644 src-tauri/src/ai.rs create mode 100644 src-tauri/src/backup.rs create mode 100644 src-tauri/src/commands.rs create mode 100644 src-tauri/src/history.rs create mode 100644 src-tauri/src/lib.rs create mode 100644 src-tauri/src/main.rs create mode 100644 src-tauri/src/search/mod.rs create mode 100644 src-tauri/src/state.rs create mode 100644 src-tauri/src/types.rs create mode 100644 src-tauri/src/vault/frontmatter.rs create mode 100644 src-tauri/src/vault/mod.rs create mode 100644 src-tauri/src/vault/operations.rs create mode 100644 src-tauri/src/vault/watcher.rs create mode 100644 src-tauri/tauri.conf.json create mode 100644 src/app.css create mode 100644 src/app.d.ts create mode 100644 src/app.html create mode 100644 src/lib/api.ts create mode 100644 src/lib/assets/favicon.svg create mode 100644 src/lib/components/AppLayout.svelte create mode 100644 src/lib/components/CommandPalette.svelte create mode 100644 src/lib/components/Editor.svelte create mode 100644 src/lib/components/GraphView.svelte create mode 100644 src/lib/components/InfoPanel.svelte create mode 100644 src/lib/components/NoteList.svelte create mode 100644 src/lib/components/ResizeHandle.svelte create mode 100644 src/lib/components/SearchPanel.svelte create mode 100644 src/lib/components/SettingsPanel.svelte create mode 100644 src/lib/components/Sidebar.svelte create mode 100644 src/lib/components/TitleBar.svelte create mode 100644 src/lib/components/VaultPicker.svelte create mode 100644 src/lib/index.ts create mode 100644 src/lib/stores/app.ts create mode 100644 src/lib/types.ts create mode 100644 src/lib/utils/debounce.ts create mode 100644 src/lib/utils/time.ts create mode 100644 src/routes/+layout.svelte create mode 100644 src/routes/+layout.ts create mode 100644 src/routes/+page.svelte create mode 100644 static/robots.txt create mode 100644 svelte.config.js create mode 100644 tsconfig.json create mode 100644 vite.config.ts diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..639be47 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +node_modules + +# Output +.output +.vercel +.netlify +.wrangler +/.svelte-kit +/build + +# Tauri +/src-tauri/target +/src-tauri/gen + +# OS +.DS_Store +Thumbs.db + +# Env +.env +.env.* +!.env.example +!.env.test + +# Vite +vite.config.js.timestamp-* +vite.config.ts.timestamp-* + +# Claude Code +.claude/ + +# Signing keys +*.key diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..b6f27f1 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +engine-strict=true diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..be3f7b2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..5ea4920 --- /dev/null +++ b/README.md @@ -0,0 +1,62 @@ +# HelixNotes + +A local-first markdown note-taking app built with Tauri, SvelteKit, and Rust. + +Your notes are stored as standard Markdown files on your local filesystem. No cloud, no lock-in. + +## Download + +| Platform | Download | +|----------|----------| +| Linux | [HelixNotes_1.0.0_amd64.AppImage](https://codeberg.org/ArkHost/HelixNotes/releases/download/v1.0.0/HelixNotes_1.0.0_amd64.AppImage) | +| Windows | Coming soon | +| macOS | Coming soon | + +See all releases: [codeberg.org/ArkHost/HelixNotes/releases](https://codeberg.org/ArkHost/HelixNotes/releases) + +## Features + +- **Markdown editor** with rich formatting toolbar, slash commands, and source mode +- **Wiki-links** — link notes with `[[Note Title]]` syntax +- **Graph view** — visualize connections between your notes +- **Full-text search** powered by Tantivy +- **AI writing tools** — improve, summarize, translate, and more (Anthropic / OpenAI) +- **Version history** — per-note snapshots with diff view +- **Backups** — automatic zip-based vault backups +- **PDF preview** — inline rendering of embedded PDFs +- **Obsidian import** — convert Obsidian wiki-links to standard markdown +- **Themes** — light/dark mode with customizable accent colors and fonts +- **Focus mode** — distraction-free writing +- **Local-first** — everything stays on your machine + +## Tech Stack + +- **Frontend**: SvelteKit (Svelte 5) + TailwindCSS v4 + TipTap v3 +- **Backend**: Rust (Tauri 2.0) + Tantivy (search) + Notify (file watcher) +- **Platforms**: Linux (AppImage, .deb, .rpm), Windows, macOS + +## Building from Source + +### Prerequisites + +- [Rust](https://rustup.rs/) (1.77+) +- [Node.js](https://nodejs.org/) (18+) +- [pnpm](https://pnpm.io/) +- System dependencies for Tauri: see [Tauri prerequisites](https://v2.tauri.app/start/prerequisites/) + +### Development + +```bash +pnpm install +pnpm tauri dev +``` + +### Production Build + +```bash +pnpm tauri build +``` + +## License + +[AGPL-3.0](LICENSE) diff --git a/package.json b/package.json new file mode 100644 index 0000000..ca719c6 --- /dev/null +++ b/package.json @@ -0,0 +1,68 @@ +{ + "name": "helixnotes", + "private": true, + "license": "AGPL-3.0-or-later", + "version": "1.0.0", + "type": "module", + "scripts": { + "dev": "vite dev", + "build": "vite build", + "preview": "vite preview", + "prepare": "svelte-kit sync || echo ''", + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "tauri": "tauri", + "tauri:dev": "tauri dev", + "tauri:build": "tauri build" + }, + "devDependencies": { + "@sveltejs/adapter-auto": "^7.0.0", + "@sveltejs/adapter-static": "^3.0.10", + "@sveltejs/kit": "^2.50.2", + "@sveltejs/vite-plugin-svelte": "^6.2.4", + "@tailwindcss/postcss": "^4.1.18", + "@tailwindcss/vite": "^4.1.18", + "@tauri-apps/cli": "^2.10.0", + "svelte": "^5.49.2", + "svelte-check": "^4.3.6", + "tailwindcss": "^4.1.18", + "typescript": "^5.9.3", + "vite": "^7.3.1" + }, + "dependencies": { + "@tauri-apps/api": "^2.10.1", + "@tauri-apps/plugin-dialog": "^2.6.0", + "@tauri-apps/plugin-fs": "^2.4.5", + "@tauri-apps/plugin-opener": "^2.5.3", + "@tauri-apps/plugin-updater": "^2.10.0", + "@tiptap/core": "^3.19.0", + "@tiptap/extension-code-block-lowlight": "^3.19.0", + "@tiptap/extension-color": "^3.19.0", + "@tiptap/extension-details": "^3.19.0", + "@tiptap/extension-highlight": "^3.19.0", + "@tiptap/extension-image": "^3.19.0", + "@tiptap/extension-link": "^3.19.0", + "@tiptap/extension-placeholder": "^3.19.0", + "@tiptap/extension-subscript": "^3.19.0", + "@tiptap/extension-superscript": "^3.19.0", + "@tiptap/extension-table": "^3.19.0", + "@tiptap/extension-table-cell": "^3.19.0", + "@tiptap/extension-table-header": "^3.19.0", + "@tiptap/extension-table-row": "^3.19.0", + "@tiptap/extension-task-item": "^3.19.0", + "@tiptap/extension-task-list": "^3.19.0", + "@tiptap/extension-text-align": "^3.19.0", + "@tiptap/extension-text-style": "^3.19.0", + "@tiptap/extension-typography": "^3.19.0", + "@tiptap/extension-underline": "^3.19.0", + "@tiptap/pm": "^3.19.0", + "@tiptap/starter-kit": "^3.19.0", + "@types/markdown-it": "^14.1.2", + "lowlight": "^3.3.0", + "markdown-it": "^14.1.0", + "markdown-it-mark": "^4.0.0", + "markdown-it-sub": "^2.0.0", + "markdown-it-sup": "^2.0.0", + "markdown-it-task-lists": "^2.1.1" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..30662cc --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,2403 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@tauri-apps/api': + specifier: ^2.10.1 + version: 2.10.1 + '@tauri-apps/plugin-dialog': + specifier: ^2.6.0 + version: 2.6.0 + '@tauri-apps/plugin-fs': + specifier: ^2.4.5 + version: 2.4.5 + '@tauri-apps/plugin-opener': + specifier: ^2.5.3 + version: 2.5.3 + '@tauri-apps/plugin-updater': + specifier: ^2.10.0 + version: 2.10.0 + '@tiptap/core': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/extension-code-block-lowlight': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/extension-code-block@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)(highlight.js@11.11.1)(lowlight@3.3.0) + '@tiptap/extension-color': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/extension-text-style@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))) + '@tiptap/extension-details': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/extension-text-style@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)))(@tiptap/pm@3.19.0) + '@tiptap/extension-highlight': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-image': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-link': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/extension-placeholder': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/extensions@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-subscript': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/extension-superscript': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/extension-table': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/extension-table-cell': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/extension-table@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-table-header': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/extension-table@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-table-row': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/extension-table@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-task-item': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-task-list': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-text-align': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-text-style': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-typography': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-underline': + specifier: ^3.19.0 + version: 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/pm': + specifier: ^3.19.0 + version: 3.19.0 + '@tiptap/starter-kit': + specifier: ^3.19.0 + version: 3.19.0 + '@types/markdown-it': + specifier: ^14.1.2 + version: 14.1.2 + lowlight: + specifier: ^3.3.0 + version: 3.3.0 + markdown-it: + specifier: ^14.1.0 + version: 14.1.0 + markdown-it-mark: + specifier: ^4.0.0 + version: 4.0.0 + markdown-it-sub: + specifier: ^2.0.0 + version: 2.0.0 + markdown-it-sup: + specifier: ^2.0.0 + version: 2.0.0 + markdown-it-task-lists: + specifier: ^2.1.1 + version: 2.1.1 + devDependencies: + '@sveltejs/adapter-auto': + specifier: ^7.0.0 + version: 7.0.0(@sveltejs/kit@2.50.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))) + '@sveltejs/adapter-static': + specifier: ^3.0.10 + version: 3.0.10(@sveltejs/kit@2.50.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))) + '@sveltejs/kit': + specifier: ^2.50.2 + version: 2.50.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) + '@sveltejs/vite-plugin-svelte': + specifier: ^6.2.4 + version: 6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) + '@tailwindcss/postcss': + specifier: ^4.1.18 + version: 4.1.18 + '@tailwindcss/vite': + specifier: ^4.1.18 + version: 4.1.18(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) + '@tauri-apps/cli': + specifier: ^2.10.0 + version: 2.10.0 + svelte: + specifier: ^5.49.2 + version: 5.50.0 + svelte-check: + specifier: ^4.3.6 + version: 4.3.6(picomatch@4.0.3)(svelte@5.50.0)(typescript@5.9.3) + tailwindcss: + specifier: ^4.1.18 + version: 4.1.18 + typescript: + specifier: ^5.9.3 + version: 5.9.3 + vite: + specifier: ^7.3.1 + version: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) + +packages: + + '@alloc/quick-lru@5.2.0': + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} + engines: {node: '>=10'} + + '@esbuild/aix-ppc64@0.27.3': + resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.27.3': + resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.27.3': + resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.27.3': + resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.27.3': + resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.27.3': + resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.27.3': + resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.27.3': + resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.27.3': + resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.27.3': + resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.27.3': + resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.27.3': + resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.27.3': + resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.27.3': + resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.27.3': + resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.27.3': + resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.27.3': + resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.27.3': + resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.27.3': + resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.27.3': + resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.27.3': + resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.27.3': + resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.27.3': + resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.27.3': + resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.27.3': + resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.27.3': + resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + + '@polka/url@1.0.0-next.29': + resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} + + '@remirror/core-constants@3.0.0': + resolution: {integrity: sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==} + + '@rollup/rollup-android-arm-eabi@4.57.1': + resolution: {integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.57.1': + resolution: {integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.57.1': + resolution: {integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.57.1': + resolution: {integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.57.1': + resolution: {integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.57.1': + resolution: {integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': + resolution: {integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm-musleabihf@4.57.1': + resolution: {integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==} + cpu: [arm] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-arm64-gnu@4.57.1': + resolution: {integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm64-musl@4.57.1': + resolution: {integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-loong64-gnu@4.57.1': + resolution: {integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==} + cpu: [loong64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-loong64-musl@4.57.1': + resolution: {integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==} + cpu: [loong64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-ppc64-gnu@4.57.1': + resolution: {integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-ppc64-musl@4.57.1': + resolution: {integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==} + cpu: [ppc64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-riscv64-gnu@4.57.1': + resolution: {integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-riscv64-musl@4.57.1': + resolution: {integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-s390x-gnu@4.57.1': + resolution: {integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-x64-gnu@4.57.1': + resolution: {integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-x64-musl@4.57.1': + resolution: {integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rollup/rollup-openbsd-x64@4.57.1': + resolution: {integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.57.1': + resolution: {integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.57.1': + resolution: {integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.57.1': + resolution: {integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.57.1': + resolution: {integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.57.1': + resolution: {integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==} + cpu: [x64] + os: [win32] + + '@standard-schema/spec@1.1.0': + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} + + '@sveltejs/acorn-typescript@1.0.8': + resolution: {integrity: sha512-esgN+54+q0NjB0Y/4BomT9samII7jGwNy/2a3wNZbT2A2RpmXsXwUt24LvLhx6jUq2gVk4cWEvcRO6MFQbOfNA==} + peerDependencies: + acorn: ^8.9.0 + + '@sveltejs/adapter-auto@7.0.0': + resolution: {integrity: sha512-ImDWaErTOCkRS4Gt+5gZuymKFBobnhChXUZ9lhUZLahUgvA4OOvRzi3sahzYgbxGj5nkA6OV0GAW378+dl/gyw==} + peerDependencies: + '@sveltejs/kit': ^2.0.0 + + '@sveltejs/adapter-static@3.0.10': + resolution: {integrity: sha512-7D9lYFWJmB7zxZyTE/qxjksvMqzMuYrrsyh1f4AlZqeZeACPRySjbC3aFiY55wb1tWUaKOQG9PVbm74JcN2Iew==} + peerDependencies: + '@sveltejs/kit': ^2.0.0 + + '@sveltejs/kit@2.50.2': + resolution: {integrity: sha512-875hTUkEbz+MyJIxWbQjfMaekqdmEKUUfR7JyKcpfMRZqcGyrO9Gd+iS1D/Dx8LpE5FEtutWGOtlAh4ReSAiOA==} + engines: {node: '>=18.13'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.0.0 + '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0 + svelte: ^4.0.0 || ^5.0.0-next.0 + typescript: ^5.3.3 + vite: ^5.0.3 || ^6.0.0 || ^7.0.0-beta.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + typescript: + optional: true + + '@sveltejs/vite-plugin-svelte-inspector@5.0.2': + resolution: {integrity: sha512-TZzRTcEtZffICSAoZGkPSl6Etsj2torOVrx6Uw0KpXxrec9Gg6jFWQ60Q3+LmNGfZSxHRCZL7vXVZIWmuV50Ig==} + engines: {node: ^20.19 || ^22.12 || >=24} + peerDependencies: + '@sveltejs/vite-plugin-svelte': ^6.0.0-next.0 + svelte: ^5.0.0 + vite: ^6.3.0 || ^7.0.0 + + '@sveltejs/vite-plugin-svelte@6.2.4': + resolution: {integrity: sha512-ou/d51QSdTyN26D7h6dSpusAKaZkAiGM55/AKYi+9AGZw7q85hElbjK3kEyzXHhLSnRISHOYzVge6x0jRZ7DXA==} + engines: {node: ^20.19 || ^22.12 || >=24} + peerDependencies: + svelte: ^5.0.0 + vite: ^6.3.0 || ^7.0.0 + + '@tailwindcss/node@4.1.18': + resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==} + + '@tailwindcss/oxide-android-arm64@4.1.18': + resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + + '@tailwindcss/oxide-darwin-arm64@4.1.18': + resolution: {integrity: sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@tailwindcss/oxide-darwin-x64@4.1.18': + resolution: {integrity: sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@tailwindcss/oxide-freebsd-x64@4.1.18': + resolution: {integrity: sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18': + resolution: {integrity: sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@tailwindcss/oxide-linux-arm64-gnu@4.1.18': + resolution: {integrity: sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@tailwindcss/oxide-linux-arm64-musl@4.1.18': + resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@tailwindcss/oxide-linux-x64-gnu@4.1.18': + resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@tailwindcss/oxide-linux-x64-musl@4.1.18': + resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [musl] + + '@tailwindcss/oxide-wasm32-wasi@4.1.18': + resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + bundledDependencies: + - '@napi-rs/wasm-runtime' + - '@emnapi/core' + - '@emnapi/runtime' + - '@tybys/wasm-util' + - '@emnapi/wasi-threads' + - tslib + + '@tailwindcss/oxide-win32-arm64-msvc@4.1.18': + resolution: {integrity: sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@tailwindcss/oxide-win32-x64-msvc@4.1.18': + resolution: {integrity: sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@tailwindcss/oxide@4.1.18': + resolution: {integrity: sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==} + engines: {node: '>= 10'} + + '@tailwindcss/postcss@4.1.18': + resolution: {integrity: sha512-Ce0GFnzAOuPyfV5SxjXGn0CubwGcuDB0zcdaPuCSzAa/2vII24JTkH+I6jcbXLb1ctjZMZZI6OjDaLPJQL1S0g==} + + '@tailwindcss/vite@4.1.18': + resolution: {integrity: sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==} + peerDependencies: + vite: ^5.2.0 || ^6 || ^7 + + '@tauri-apps/api@2.10.1': + resolution: {integrity: sha512-hKL/jWf293UDSUN09rR69hrToyIXBb8CjGaWC7gfinvnQrBVvnLr08FeFi38gxtugAVyVcTa5/FD/Xnkb1siBw==} + + '@tauri-apps/cli-darwin-arm64@2.10.0': + resolution: {integrity: sha512-avqHD4HRjrMamE/7R/kzJPcAJnZs0IIS+1nkDP5b+TNBn3py7N2aIo9LIpy+VQq0AkN8G5dDpZtOOBkmWt/zjA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@tauri-apps/cli-darwin-x64@2.10.0': + resolution: {integrity: sha512-keDmlvJRStzVFjZTd0xYkBONLtgBC9eMTpmXnBXzsHuawV2q9PvDo2x6D5mhuoMVrJ9QWjgaPKBBCFks4dK71Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@tauri-apps/cli-linux-arm-gnueabihf@2.10.0': + resolution: {integrity: sha512-e5u0VfLZsMAC9iHaOEANumgl6lfnJx0Dtjkd8IJpysZ8jp0tJ6wrIkto2OzQgzcYyRCKgX72aKE0PFgZputA8g==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@tauri-apps/cli-linux-arm64-gnu@2.10.0': + resolution: {integrity: sha512-YrYYk2dfmBs5m+OIMCrb+JH/oo+4FtlpcrTCgiFYc7vcs6m3QDd1TTyWu0u01ewsCtK2kOdluhr/zKku+KP7HA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@tauri-apps/cli-linux-arm64-musl@2.10.0': + resolution: {integrity: sha512-GUoPdVJmrJRIXFfW3Rkt+eGK9ygOdyISACZfC/bCSfOnGt8kNdQIQr5WRH9QUaTVFIwxMlQyV3m+yXYP+xhSVA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@tauri-apps/cli-linux-riscv64-gnu@2.10.0': + resolution: {integrity: sha512-JO7s3TlSxshwsoKNCDkyvsx5gw2QAs/Y2GbR5UE2d5kkU138ATKoPOtxn8G1fFT1aDW4LH0rYAAfBpGkDyJJnw==} + engines: {node: '>= 10'} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@tauri-apps/cli-linux-x64-gnu@2.10.0': + resolution: {integrity: sha512-Uvh4SUUp4A6DVRSMWjelww0GnZI3PlVy7VS+DRF5napKuIehVjGl9XD0uKoCoxwAQBLctvipyEK+pDXpJeoHng==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@tauri-apps/cli-linux-x64-musl@2.10.0': + resolution: {integrity: sha512-AP0KRK6bJuTpQ8kMNWvhIpKUkQJfcPFeba7QshOQZjJ8wOS6emwTN4K5g/d3AbCMo0RRdnZWwu67MlmtJyxC1Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [musl] + + '@tauri-apps/cli-win32-arm64-msvc@2.10.0': + resolution: {integrity: sha512-97DXVU3dJystrq7W41IX+82JEorLNY+3+ECYxvXWqkq7DBN6FsA08x/EFGE8N/b0LTOui9X2dvpGGoeZKKV08g==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@tauri-apps/cli-win32-ia32-msvc@2.10.0': + resolution: {integrity: sha512-EHyQ1iwrWy1CwMalEm9z2a6L5isQ121pe7FcA2xe4VWMJp+GHSDDGvbTv/OPdkt2Lyr7DAZBpZHM6nvlHXEc4A==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@tauri-apps/cli-win32-x64-msvc@2.10.0': + resolution: {integrity: sha512-NTpyQxkpzGmU6ceWBTY2xRIEaS0ZLbVx1HE1zTA3TY/pV3+cPoPPOs+7YScr4IMzXMtOw7tLw5LEXo5oIG3qaQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@tauri-apps/cli@2.10.0': + resolution: {integrity: sha512-ZwT0T+7bw4+DPCSWzmviwq5XbXlM0cNoleDKOYPFYqcZqeKY31KlpoMW/MOON/tOFBPgi31a2v3w9gliqwL2+Q==} + engines: {node: '>= 10'} + hasBin: true + + '@tauri-apps/plugin-dialog@2.6.0': + resolution: {integrity: sha512-q4Uq3eY87TdcYzXACiYSPhmpBA76shgmQswGkSVio4C82Sz2W4iehe9TnKYwbq7weHiL88Yw19XZm7v28+Micg==} + + '@tauri-apps/plugin-fs@2.4.5': + resolution: {integrity: sha512-dVxWWGE6VrOxC7/jlhyE+ON/Cc2REJlM35R3PJX3UvFw2XwYhLGQVAIyrehenDdKjotipjYEVc4YjOl3qq90fA==} + + '@tauri-apps/plugin-opener@2.5.3': + resolution: {integrity: sha512-CCcUltXMOfUEArbf3db3kCE7Ggy1ExBEBl51Ko2ODJ6GDYHRp1nSNlQm5uNCFY5k7/ufaK5Ib3Du/Zir19IYQQ==} + + '@tauri-apps/plugin-updater@2.10.0': + resolution: {integrity: sha512-ljN8jPlnT0aSn8ecYhuBib84alxfMx6Hc8vJSKMJyzGbTPFZAC44T2I1QNFZssgWKrAlofvJqCC6Rr472JWfkQ==} + + '@tiptap/core@3.19.0': + resolution: {integrity: sha512-bpqELwPW+DG8gWiD8iiFtSl4vIBooG5uVJod92Qxn3rA9nFatyXRr4kNbMJmOZ66ezUvmCjXVe/5/G4i5cyzKA==} + peerDependencies: + '@tiptap/pm': ^3.19.0 + + '@tiptap/extension-blockquote@3.19.0': + resolution: {integrity: sha512-y3UfqY9KD5XwWz3ndiiJ089Ij2QKeiXy/g1/tlAN/F1AaWsnkHEHMLxCP1BIqmMpwsX7rZjMLN7G5Lp7c9682A==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-bold@3.19.0': + resolution: {integrity: sha512-UZgb1d0XK4J/JRIZ7jW+s4S6KjuEDT2z1PPM6ugcgofgJkWQvRZelCPbmtSFd3kwsD+zr9UPVgTh9YIuGQ8t+Q==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-bullet-list@3.19.0': + resolution: {integrity: sha512-F9uNnqd0xkJbMmRxVI5RuVxwB9JaCH/xtRqOUNQZnRBt7IdAElCY+Dvb4hMCtiNv+enGM/RFGJuFHR9TxmI7rw==} + peerDependencies: + '@tiptap/extension-list': ^3.19.0 + + '@tiptap/extension-code-block-lowlight@3.19.0': + resolution: {integrity: sha512-P8O8i1J+XozEVA7bF/Ijwf/r1rVqrh1DBQ7dXxBcrUvLpIGyVjtxX228jBF/kD4kf2xOlphvjDhV2fLa8XOVsg==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/extension-code-block': ^3.19.0 + '@tiptap/pm': ^3.19.0 + highlight.js: ^11 + lowlight: ^2 || ^3 + + '@tiptap/extension-code-block@3.19.0': + resolution: {integrity: sha512-b/2qR+tMn8MQb+eaFYgVk4qXnLNkkRYmwELQ8LEtEDQPxa5Vl7J3eu8+4OyoIFhZrNDZvvoEp80kHMCP8sI6rg==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/pm': ^3.19.0 + + '@tiptap/extension-code@3.19.0': + resolution: {integrity: sha512-2kqqQIXBXj2Or+4qeY3WoE7msK+XaHKL6EKOcKlOP2BW8eYqNTPzNSL+PfBDQ3snA7ljZQkTs/j4GYDj90vR1A==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-color@3.19.0': + resolution: {integrity: sha512-SemOrEEnmbKshhbTeKIvffwMlgqDAUDuOYyizfKqYM2dd5fRjohp+oszExO7scVhDtHtvtP/l3UmkBGBYfl4Tg==} + peerDependencies: + '@tiptap/extension-text-style': ^3.19.0 + + '@tiptap/extension-details@3.19.0': + resolution: {integrity: sha512-BUc9N8UVl/orzXoDSh9YCB+G1csNDAKm4EeKAQpGotbgv32nnTPKv50BvPx+a5pZfVQHaiJlb98Xmi7dMZs1Ug==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/extension-text-style': ^3.19.0 + '@tiptap/pm': ^3.19.0 + + '@tiptap/extension-document@3.19.0': + resolution: {integrity: sha512-AOf0kHKSFO0ymjVgYSYDncRXTITdTcrj1tqxVazrmO60KNl1Rc2dAggDvIVTEBy5NvceF0scc7q3sE/5ZtVV7A==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-dropcursor@3.19.0': + resolution: {integrity: sha512-sf3dEZXiLvsGqVK2maUIzXY6qtYYCvBumag7+VPTMGQ0D4hiZ1X/4ukt4+6VXDg5R2WP1CoIt/QvUetUjWNhbQ==} + peerDependencies: + '@tiptap/extensions': ^3.19.0 + + '@tiptap/extension-gapcursor@3.19.0': + resolution: {integrity: sha512-w7DACS4oSZaDWjz7gropZHPc9oXqC9yERZTcjWxyORuuIh1JFf0TRYspleK+OK28plK/IftojD/yUDn1MTRhvA==} + peerDependencies: + '@tiptap/extensions': ^3.19.0 + + '@tiptap/extension-hard-break@3.19.0': + resolution: {integrity: sha512-lAmQraYhPS5hafvCl74xDB5+bLuNwBKIEsVoim35I0sDJj5nTrfhaZgMJ91VamMvT+6FF5f1dvBlxBxAWa8jew==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-heading@3.19.0': + resolution: {integrity: sha512-uLpLlfyp086WYNOc0ekm1gIZNlEDfmzOhKzB0Hbyi6jDagTS+p9mxUNYeYOn9jPUxpFov43+Wm/4E24oY6B+TQ==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-highlight@3.19.0': + resolution: {integrity: sha512-MYwSDCh/aG12KXw30XmHwrruElBRB8b7Ou0jd8n8H2oXb+QexVqnMa2+ylkuTAl+2D5PR7zdIIOeeHRSTmkPPw==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-horizontal-rule@3.19.0': + resolution: {integrity: sha512-iqUHmgMGhMgYGwG6L/4JdelVQ5Mstb4qHcgTGd/4dkcUOepILvhdxajPle7OEdf9sRgjQO6uoAU5BVZVC26+ng==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/pm': ^3.19.0 + + '@tiptap/extension-image@3.19.0': + resolution: {integrity: sha512-/rGl8nBziBPVJJ/9639eQWFDKcI3RQsDM3s+cqYQMFQfMqc7sQB9h4o4sHCBpmKxk3Y0FV/0NjnjLbBVm8OKdQ==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-italic@3.19.0': + resolution: {integrity: sha512-6GffxOnS/tWyCbDkirWNZITiXRta9wrCmrfa4rh+v32wfaOL1RRQNyqo9qN6Wjyl1R42Js+yXTzTTzZsOaLMYA==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-link@3.19.0': + resolution: {integrity: sha512-HEGDJnnCPfr7KWu7Dsq+eRRe/mBCsv6DuI+7fhOCLDJjjKzNgrX2abbo/zG3D/4lCVFaVb+qawgJubgqXR/Smw==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/pm': ^3.19.0 + + '@tiptap/extension-list-item@3.19.0': + resolution: {integrity: sha512-VsSKuJz4/Tb6ZmFkXqWpDYkRzmaLTyE6dNSEpNmUpmZ32sMqo58mt11/huADNwfBFB0Ve7siH/VnFNIJYY3xvg==} + peerDependencies: + '@tiptap/extension-list': ^3.19.0 + + '@tiptap/extension-list-keymap@3.19.0': + resolution: {integrity: sha512-bxgmAgA3RzBGA0GyTwS2CC1c+QjkJJq9hC+S6PSOWELGRiTbwDN3MANksFXLjntkTa0N5fOnL27vBHtMStURqw==} + peerDependencies: + '@tiptap/extension-list': ^3.19.0 + + '@tiptap/extension-list@3.19.0': + resolution: {integrity: sha512-N6nKbFB2VwMsPlCw67RlAtYSK48TAsAUgjnD+vd3ieSlIufdQnLXDFUP6hFKx9mwoUVUgZGz02RA6bkxOdYyTw==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/pm': ^3.19.0 + + '@tiptap/extension-ordered-list@3.19.0': + resolution: {integrity: sha512-cxGsINquwHYE1kmhAcLNLHAofmoDEG6jbesR5ybl7tU5JwtKVO7S/xZatll2DU1dsDAXWPWEeeMl4e/9svYjCg==} + peerDependencies: + '@tiptap/extension-list': ^3.19.0 + + '@tiptap/extension-paragraph@3.19.0': + resolution: {integrity: sha512-xWa6gj82l5+AzdYyrSk9P4ynySaDzg/SlR1FarXE5yPXibYzpS95IWaVR0m2Qaz7Rrk+IiYOTGxGRxcHLOelNg==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-placeholder@3.19.0': + resolution: {integrity: sha512-i15OfgyI4IDCYAcYSKUMnuZkYuUInfanjf9zquH8J2BETiomf/jZldVCp/QycMJ8DOXZ38fXDc99wOygnSNySg==} + peerDependencies: + '@tiptap/extensions': ^3.19.0 + + '@tiptap/extension-strike@3.19.0': + resolution: {integrity: sha512-xYpabHsv7PccLUBQaP8AYiFCnYbx6P93RHPd0lgNwhdOjYFd931Zy38RyoxPHAgbYVmhf1iyx7lpuLtBnhS5dA==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-subscript@3.19.0': + resolution: {integrity: sha512-RchUOSIDprlnuzmA/znZIBKMONIlCAXHuR6XkoNX2jFJ/9OHk/si+jEeY8jJfpPDpVqZ3KrwS/zJrqhU/pT+hQ==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/pm': ^3.19.0 + + '@tiptap/extension-superscript@3.19.0': + resolution: {integrity: sha512-PjLUGjM23/7hqFP5HS1DbdywRm63GhjJ5SD6KqNgyZQwcwDZeJTAW2b/LYTHAP+k07OxOLPdj/k4ntQKtgKNow==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/pm': ^3.19.0 + + '@tiptap/extension-table-cell@3.19.0': + resolution: {integrity: sha512-T67EDWmiRdOGctolaUpMPXffDkEFL+NUppSV61cPU3jQtDwGg01meauy5u67u6OUM8ICiZ+Sc7Xd2DIt+7Nv5g==} + peerDependencies: + '@tiptap/extension-table': ^3.19.0 + + '@tiptap/extension-table-header@3.19.0': + resolution: {integrity: sha512-fVHJUCfZp/JOE96hJ3paElRynpIVdukOiAjgZbaY9WuCKoXd3xYqdsbUSdf+XFmdPqwvQKhnkaY/qXW3FIxO3w==} + peerDependencies: + '@tiptap/extension-table': ^3.19.0 + + '@tiptap/extension-table-row@3.19.0': + resolution: {integrity: sha512-L3DeIXQARCs+m4rsQWiUPJso1z6xZ6awa/Kc+PCoq7rbPLtwhWUIld3sm9gdLac61Mf/TVwb18EdfygHcU7jCA==} + peerDependencies: + '@tiptap/extension-table': ^3.19.0 + + '@tiptap/extension-table@3.19.0': + resolution: {integrity: sha512-Lg8DlkkDUMYE/CcGOxoCWF98B2i7VWh+AGgqlF+XWrHjhlKHfENLRXm1a0vWuyyP3NknRYILoaaZ1s7QzmXKRA==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/pm': ^3.19.0 + + '@tiptap/extension-task-item@3.19.0': + resolution: {integrity: sha512-1il70SoaoEA5jKr2QS30CpZoB7EzdSLugROMBPRUPc0feIBKAf6yUPhxlFyU4ez/uT4Pazsf1HAgHI3AOr+MtQ==} + peerDependencies: + '@tiptap/extension-list': ^3.19.0 + + '@tiptap/extension-task-list@3.19.0': + resolution: {integrity: sha512-Slb6YZi7XpVT966oAJhqzZu4LVuHtUeZgMxA0bdc8FSZBxntcr8OQWmPbqvR437RAR/Xd7b5quXS3JmSeksyvA==} + peerDependencies: + '@tiptap/extension-list': ^3.19.0 + + '@tiptap/extension-text-align@3.19.0': + resolution: {integrity: sha512-cY8bHWYojLTHXZb2j2srdh7ltmDgnwXYvSxbPL4HK4j7XxQOGnOsTakgM/BNhxymOfEj2414i5Otyy8hlgviFA==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-text-style@3.19.0': + resolution: {integrity: sha512-R55V6iUfRq03SGt/R2KvaeN+XGFiKJHx1jFJhZzvnWhMV7YqjHSG2r4BLvpTq1HBqteMbEjI+EOnb4t9AKd6aQ==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-text@3.19.0': + resolution: {integrity: sha512-K95+SnbZy0h6hNFtfy23n8t/nOcTFEf69In9TSFVVmwn/Nwlke+IfiESAkqbt1/7sKJeegRXYO7WzFEmFl9Q/g==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-typography@3.19.0': + resolution: {integrity: sha512-2Rwwz1ErNhqUcXPzPX2u4frdyrK4Yj6ZMvCLPxLt5lQXj9Eq9YEoD9isw8abR105ko3BCidvfElQYSFu6dWPSw==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extension-underline@3.19.0': + resolution: {integrity: sha512-800MGEWfG49j10wQzAFiW/ele1HT04MamcL8iyuPNu7ZbjbGN2yknvdrJlRy7hZlzIrVkZMr/1tz62KN33VHIw==} + peerDependencies: + '@tiptap/core': ^3.19.0 + + '@tiptap/extensions@3.19.0': + resolution: {integrity: sha512-ZmGUhLbMWaGqnJh2Bry+6V4M6gMpUDYo4D1xNux5Gng/E/eYtc+PMxMZ/6F7tNTAuujLBOQKj6D+4SsSm457jw==} + peerDependencies: + '@tiptap/core': ^3.19.0 + '@tiptap/pm': ^3.19.0 + + '@tiptap/pm@3.19.0': + resolution: {integrity: sha512-789zcnM4a8OWzvbD2DL31d0wbSm9BVeO/R7PLQwLIGysDI3qzrcclyZ8yhqOEVuvPitRRwYLq+mY14jz7kY4cw==} + + '@tiptap/starter-kit@3.19.0': + resolution: {integrity: sha512-dTCkHEz+Y8ADxX7h+xvl6caAj+3nII/wMB1rTQchSuNKqJTOrzyUsCWm094+IoZmLT738wANE0fRIgziNHs/ug==} + + '@types/cookie@0.6.0': + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/linkify-it@5.0.0': + resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} + + '@types/markdown-it@14.1.2': + resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==} + + '@types/mdurl@2.0.0': + resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + + crelt@1.0.6: + resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} + + devalue@5.6.2: + resolution: {integrity: sha512-nPRkjWzzDQlsejL1WVifk5rvcFi/y1onBRxjaFMjZeR9mFpqu2gmAZ9xUB9/IEanEP/vBtGeGganC/GO1fmufg==} + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + enhanced-resolve@5.19.0: + resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==} + engines: {node: '>=10.13.0'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + esbuild@0.27.3: + resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==} + engines: {node: '>=18'} + hasBin: true + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + esm-env@1.2.2: + resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==} + + esrap@2.2.2: + resolution: {integrity: sha512-zA6497ha+qKvoWIK+WM9NAh5ni17sKZKhbS5B3PoYbBvaYHZWoS33zmFybmyqpn07RLUxSmn+RCls2/XF+d0oQ==} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + highlight.js@11.11.1: + resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==} + engines: {node: '>=12.0.0'} + + is-reference@3.0.3: + resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} + + jiti@2.6.1: + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} + hasBin: true + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + lightningcss-android-arm64@1.30.2: + resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + + lightningcss-darwin-arm64@1.30.2: + resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-x64@1.30.2: + resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-freebsd-x64@1.30.2: + resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-linux-arm-gnueabihf@1.30.2: + resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm64-gnu@1.30.2: + resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + lightningcss-linux-arm64-musl@1.30.2: + resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [musl] + + lightningcss-linux-x64-gnu@1.30.2: + resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [glibc] + + lightningcss-linux-x64-musl@1.30.2: + resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [musl] + + lightningcss-win32-arm64-msvc@1.30.2: + resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.30.2: + resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss@1.30.2: + resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==} + engines: {node: '>= 12.0.0'} + + linkify-it@5.0.0: + resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + + linkifyjs@4.3.2: + resolution: {integrity: sha512-NT1CJtq3hHIreOianA8aSXn6Cw0JzYOuDQbOrSPe7gqFnCpKP++MQe3ODgO3oh2GJFORkAAdqredOa60z63GbA==} + + locate-character@3.0.0: + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} + + lowlight@3.3.0: + resolution: {integrity: sha512-0JNhgFoPvP6U6lE/UdVsSq99tn6DhjjpAj5MxG49ewd2mOBVtwWYIT8ClyABhq198aXXODMU6Ox8DrGy/CpTZQ==} + + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + markdown-it-mark@4.0.0: + resolution: {integrity: sha512-YLhzaOsU9THO/cal0lUjfMjrqSMPjjyjChYM7oyj4DnyaXEzA8gnW6cVJeyCrCVeyesrY2PlEdUYJSPFYL4Nkg==} + + markdown-it-sub@2.0.0: + resolution: {integrity: sha512-iCBKgwCkfQBRg2vApy9vx1C1Tu6D8XYo8NvevI3OlwzBRmiMtsJ2sXupBgEA7PPxiDwNni3qIUkhZ6j5wofDUA==} + + markdown-it-sup@2.0.0: + resolution: {integrity: sha512-5VgmdKlkBd8sgXuoDoxMpiU+BiEt3I49GItBzzw7Mxq9CxvnhE/k09HFli09zgfFDRixDQDfDxi0mgBCXtaTvA==} + + markdown-it-task-lists@2.1.1: + resolution: {integrity: sha512-TxFAc76Jnhb2OUu+n3yz9RMu4CwGfaT788br6HhEDlvWfdeJcLUsxk1Hgw2yJio0OXsxv7pyIPmvECY7bMbluA==} + + markdown-it@14.1.0: + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} + hasBin: true + + mdurl@2.0.0: + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + mrmime@2.0.1: + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + obug@2.1.1: + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} + + orderedmap@2.1.1: + resolution: {integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + prosemirror-changeset@2.3.1: + resolution: {integrity: sha512-j0kORIBm8ayJNl3zQvD1TTPHJX3g042et6y/KQhZhnPrruO8exkTgG8X+NRpj7kIyMMEx74Xb3DyMIBtO0IKkQ==} + + prosemirror-collab@1.3.1: + resolution: {integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==} + + prosemirror-commands@1.7.1: + resolution: {integrity: sha512-rT7qZnQtx5c0/y/KlYaGvtG411S97UaL6gdp6RIZ23DLHanMYLyfGBV5DtSnZdthQql7W+lEVbpSfwtO8T+L2w==} + + prosemirror-dropcursor@1.8.2: + resolution: {integrity: sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw==} + + prosemirror-gapcursor@1.4.0: + resolution: {integrity: sha512-z00qvurSdCEWUIulij/isHaqu4uLS8r/Fi61IbjdIPJEonQgggbJsLnstW7Lgdk4zQ68/yr6B6bf7sJXowIgdQ==} + + prosemirror-history@1.5.0: + resolution: {integrity: sha512-zlzTiH01eKA55UAf1MEjtssJeHnGxO0j4K4Dpx+gnmX9n+SHNlDqI2oO1Kv1iPN5B1dm5fsljCfqKF9nFL6HRg==} + + prosemirror-inputrules@1.5.1: + resolution: {integrity: sha512-7wj4uMjKaXWAQ1CDgxNzNtR9AlsuwzHfdFH1ygEHA2KHF2DOEaXl1CJfNPAKCg9qNEh4rum975QLaCiQPyY6Fw==} + + prosemirror-keymap@1.2.3: + resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==} + + prosemirror-markdown@1.13.4: + resolution: {integrity: sha512-D98dm4cQ3Hs6EmjK500TdAOew4Z03EV71ajEFiWra3Upr7diytJsjF4mPV2dW+eK5uNectiRj0xFxYI9NLXDbw==} + + prosemirror-menu@1.2.5: + resolution: {integrity: sha512-qwXzynnpBIeg1D7BAtjOusR+81xCp53j7iWu/IargiRZqRjGIlQuu1f3jFi+ehrHhWMLoyOQTSRx/IWZJqOYtQ==} + + prosemirror-model@1.25.4: + resolution: {integrity: sha512-PIM7E43PBxKce8OQeezAs9j4TP+5yDpZVbuurd1h5phUxEKIu+G2a+EUZzIC5nS1mJktDJWzbqS23n1tsAf5QA==} + + prosemirror-schema-basic@1.2.4: + resolution: {integrity: sha512-ELxP4TlX3yr2v5rM7Sb70SqStq5NvI15c0j9j/gjsrO5vaw+fnnpovCLEGIcpeGfifkuqJwl4fon6b+KdrODYQ==} + + prosemirror-schema-list@1.5.1: + resolution: {integrity: sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==} + + prosemirror-state@1.4.4: + resolution: {integrity: sha512-6jiYHH2CIGbCfnxdHbXZ12gySFY/fz/ulZE333G6bPqIZ4F+TXo9ifiR86nAHpWnfoNjOb3o5ESi7J8Uz1jXHw==} + + prosemirror-tables@1.8.5: + resolution: {integrity: sha512-V/0cDCsHKHe/tfWkeCmthNUcEp1IVO3p6vwN8XtwE9PZQLAZJigbw3QoraAdfJPir4NKJtNvOB8oYGKRl+t0Dw==} + + prosemirror-trailing-node@3.0.0: + resolution: {integrity: sha512-xiun5/3q0w5eRnGYfNlW1uU9W6x5MoFKWwq/0TIRgt09lv7Hcser2QYV8t4muXbEr+Fwo0geYn79Xs4GKywrRQ==} + peerDependencies: + prosemirror-model: ^1.22.1 + prosemirror-state: ^1.4.2 + prosemirror-view: ^1.33.8 + + prosemirror-transform@1.11.0: + resolution: {integrity: sha512-4I7Ce4KpygXb9bkiPS3hTEk4dSHorfRw8uI0pE8IhxlK2GXsqv5tIA7JUSxtSu7u8APVOTtbUBxTmnHIxVkIJw==} + + prosemirror-view@1.41.6: + resolution: {integrity: sha512-mxpcDG4hNQa/CPtzxjdlir5bJFDlm0/x5nGBbStB2BWX+XOQ9M8ekEG+ojqB5BcVu2Rc80/jssCMZzSstJuSYg==} + + punycode.js@2.3.1: + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} + + readdirp@4.1.2: + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} + + rollup@4.57.1: + resolution: {integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rope-sequence@1.3.4: + resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==} + + sade@1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + + set-cookie-parser@3.0.1: + resolution: {integrity: sha512-n7Z7dXZhJbwuAHhNzkTti6Aw9QDDjZtm3JTpTGATIdNzdQz5GuFs22w90BcvF4INfnrL5xrX3oGsuqO5Dx3A1Q==} + + sirv@3.0.2: + resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==} + engines: {node: '>=18'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + svelte-check@4.3.6: + resolution: {integrity: sha512-uBkz96ElE3G4pt9E1Tw0xvBfIUQkeH794kDQZdAUk795UVMr+NJZpuFSS62vcmO/DuSalK83LyOwhgWq8YGU1Q==} + engines: {node: '>= 18.0.0'} + hasBin: true + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.0 + typescript: '>=5.0.0' + + svelte@5.50.0: + resolution: {integrity: sha512-FR9kTLmX5i0oyeQ5j/+w8DuagIkQ7MWMuPpPVioW2zx9Dw77q+1ufLzF1IqNtcTXPRnIIio4PlasliVn43OnbQ==} + engines: {node: '>=18'} + + tailwindcss@4.1.18: + resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==} + + tapable@2.3.0: + resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==} + engines: {node: '>=6'} + + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + engines: {node: '>=14.17'} + hasBin: true + + uc.micro@2.1.0: + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + + vite@7.3.1: + resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitefu@1.1.1: + resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 + peerDependenciesMeta: + vite: + optional: true + + w3c-keyname@2.2.8: + resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} + + zimmerframe@1.1.4: + resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==} + +snapshots: + + '@alloc/quick-lru@5.2.0': {} + + '@esbuild/aix-ppc64@0.27.3': + optional: true + + '@esbuild/android-arm64@0.27.3': + optional: true + + '@esbuild/android-arm@0.27.3': + optional: true + + '@esbuild/android-x64@0.27.3': + optional: true + + '@esbuild/darwin-arm64@0.27.3': + optional: true + + '@esbuild/darwin-x64@0.27.3': + optional: true + + '@esbuild/freebsd-arm64@0.27.3': + optional: true + + '@esbuild/freebsd-x64@0.27.3': + optional: true + + '@esbuild/linux-arm64@0.27.3': + optional: true + + '@esbuild/linux-arm@0.27.3': + optional: true + + '@esbuild/linux-ia32@0.27.3': + optional: true + + '@esbuild/linux-loong64@0.27.3': + optional: true + + '@esbuild/linux-mips64el@0.27.3': + optional: true + + '@esbuild/linux-ppc64@0.27.3': + optional: true + + '@esbuild/linux-riscv64@0.27.3': + optional: true + + '@esbuild/linux-s390x@0.27.3': + optional: true + + '@esbuild/linux-x64@0.27.3': + optional: true + + '@esbuild/netbsd-arm64@0.27.3': + optional: true + + '@esbuild/netbsd-x64@0.27.3': + optional: true + + '@esbuild/openbsd-arm64@0.27.3': + optional: true + + '@esbuild/openbsd-x64@0.27.3': + optional: true + + '@esbuild/openharmony-arm64@0.27.3': + optional: true + + '@esbuild/sunos-x64@0.27.3': + optional: true + + '@esbuild/win32-arm64@0.27.3': + optional: true + + '@esbuild/win32-ia32@0.27.3': + optional: true + + '@esbuild/win32-x64@0.27.3': + optional: true + + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 + + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/sourcemap-codec@1.5.5': {} + + '@jridgewell/trace-mapping@0.3.31': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 + + '@polka/url@1.0.0-next.29': {} + + '@remirror/core-constants@3.0.0': {} + + '@rollup/rollup-android-arm-eabi@4.57.1': + optional: true + + '@rollup/rollup-android-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-x64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-arm64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-x64@4.57.1': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.57.1': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-loong64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-ppc64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-x64-musl@4.57.1': + optional: true + + '@rollup/rollup-openbsd-x64@4.57.1': + optional: true + + '@rollup/rollup-openharmony-arm64@4.57.1': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.57.1': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.57.1': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.57.1': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.57.1': + optional: true + + '@standard-schema/spec@1.1.0': {} + + '@sveltejs/acorn-typescript@1.0.8(acorn@8.15.0)': + dependencies: + acorn: 8.15.0 + + '@sveltejs/adapter-auto@7.0.0(@sveltejs/kit@2.50.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))': + dependencies: + '@sveltejs/kit': 2.50.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) + + '@sveltejs/adapter-static@3.0.10(@sveltejs/kit@2.50.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))': + dependencies: + '@sveltejs/kit': 2.50.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) + + '@sveltejs/kit@2.50.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))': + dependencies: + '@standard-schema/spec': 1.1.0 + '@sveltejs/acorn-typescript': 1.0.8(acorn@8.15.0) + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) + '@types/cookie': 0.6.0 + acorn: 8.15.0 + cookie: 0.6.0 + devalue: 5.6.2 + esm-env: 1.2.2 + kleur: 4.1.5 + magic-string: 0.30.21 + mrmime: 2.0.1 + sade: 1.8.1 + set-cookie-parser: 3.0.1 + sirv: 3.0.2 + svelte: 5.50.0 + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) + optionalDependencies: + typescript: 5.9.3 + + '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))': + dependencies: + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) + obug: 2.1.1 + svelte: 5.50.0 + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) + + '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))': + dependencies: + '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.50.0)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) + deepmerge: 4.3.1 + magic-string: 0.30.21 + obug: 2.1.1 + svelte: 5.50.0 + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) + vitefu: 1.1.1(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) + + '@tailwindcss/node@4.1.18': + dependencies: + '@jridgewell/remapping': 2.3.5 + enhanced-resolve: 5.19.0 + jiti: 2.6.1 + lightningcss: 1.30.2 + magic-string: 0.30.21 + source-map-js: 1.2.1 + tailwindcss: 4.1.18 + + '@tailwindcss/oxide-android-arm64@4.1.18': + optional: true + + '@tailwindcss/oxide-darwin-arm64@4.1.18': + optional: true + + '@tailwindcss/oxide-darwin-x64@4.1.18': + optional: true + + '@tailwindcss/oxide-freebsd-x64@4.1.18': + optional: true + + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18': + optional: true + + '@tailwindcss/oxide-linux-arm64-gnu@4.1.18': + optional: true + + '@tailwindcss/oxide-linux-arm64-musl@4.1.18': + optional: true + + '@tailwindcss/oxide-linux-x64-gnu@4.1.18': + optional: true + + '@tailwindcss/oxide-linux-x64-musl@4.1.18': + optional: true + + '@tailwindcss/oxide-wasm32-wasi@4.1.18': + optional: true + + '@tailwindcss/oxide-win32-arm64-msvc@4.1.18': + optional: true + + '@tailwindcss/oxide-win32-x64-msvc@4.1.18': + optional: true + + '@tailwindcss/oxide@4.1.18': + optionalDependencies: + '@tailwindcss/oxide-android-arm64': 4.1.18 + '@tailwindcss/oxide-darwin-arm64': 4.1.18 + '@tailwindcss/oxide-darwin-x64': 4.1.18 + '@tailwindcss/oxide-freebsd-x64': 4.1.18 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.18 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.18 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.18 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.18 + '@tailwindcss/oxide-linux-x64-musl': 4.1.18 + '@tailwindcss/oxide-wasm32-wasi': 4.1.18 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.18 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.18 + + '@tailwindcss/postcss@4.1.18': + dependencies: + '@alloc/quick-lru': 5.2.0 + '@tailwindcss/node': 4.1.18 + '@tailwindcss/oxide': 4.1.18 + postcss: 8.5.6 + tailwindcss: 4.1.18 + + '@tailwindcss/vite@4.1.18(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))': + dependencies: + '@tailwindcss/node': 4.1.18 + '@tailwindcss/oxide': 4.1.18 + tailwindcss: 4.1.18 + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) + + '@tauri-apps/api@2.10.1': {} + + '@tauri-apps/cli-darwin-arm64@2.10.0': + optional: true + + '@tauri-apps/cli-darwin-x64@2.10.0': + optional: true + + '@tauri-apps/cli-linux-arm-gnueabihf@2.10.0': + optional: true + + '@tauri-apps/cli-linux-arm64-gnu@2.10.0': + optional: true + + '@tauri-apps/cli-linux-arm64-musl@2.10.0': + optional: true + + '@tauri-apps/cli-linux-riscv64-gnu@2.10.0': + optional: true + + '@tauri-apps/cli-linux-x64-gnu@2.10.0': + optional: true + + '@tauri-apps/cli-linux-x64-musl@2.10.0': + optional: true + + '@tauri-apps/cli-win32-arm64-msvc@2.10.0': + optional: true + + '@tauri-apps/cli-win32-ia32-msvc@2.10.0': + optional: true + + '@tauri-apps/cli-win32-x64-msvc@2.10.0': + optional: true + + '@tauri-apps/cli@2.10.0': + optionalDependencies: + '@tauri-apps/cli-darwin-arm64': 2.10.0 + '@tauri-apps/cli-darwin-x64': 2.10.0 + '@tauri-apps/cli-linux-arm-gnueabihf': 2.10.0 + '@tauri-apps/cli-linux-arm64-gnu': 2.10.0 + '@tauri-apps/cli-linux-arm64-musl': 2.10.0 + '@tauri-apps/cli-linux-riscv64-gnu': 2.10.0 + '@tauri-apps/cli-linux-x64-gnu': 2.10.0 + '@tauri-apps/cli-linux-x64-musl': 2.10.0 + '@tauri-apps/cli-win32-arm64-msvc': 2.10.0 + '@tauri-apps/cli-win32-ia32-msvc': 2.10.0 + '@tauri-apps/cli-win32-x64-msvc': 2.10.0 + + '@tauri-apps/plugin-dialog@2.6.0': + dependencies: + '@tauri-apps/api': 2.10.1 + + '@tauri-apps/plugin-fs@2.4.5': + dependencies: + '@tauri-apps/api': 2.10.1 + + '@tauri-apps/plugin-opener@2.5.3': + dependencies: + '@tauri-apps/api': 2.10.1 + + '@tauri-apps/plugin-updater@2.10.0': + dependencies: + '@tauri-apps/api': 2.10.1 + + '@tiptap/core@3.19.0(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/pm': 3.19.0 + + '@tiptap/extension-blockquote@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-bold@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-bullet-list@3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extension-list': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-code-block-lowlight@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/extension-code-block@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)(highlight.js@11.11.1)(lowlight@3.3.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/extension-code-block': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + highlight.js: 11.11.1 + lowlight: 3.3.0 + + '@tiptap/extension-code-block@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + + '@tiptap/extension-code@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-color@3.19.0(@tiptap/extension-text-style@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)))': + dependencies: + '@tiptap/extension-text-style': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + + '@tiptap/extension-details@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/extension-text-style@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)))(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/extension-text-style': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/pm': 3.19.0 + + '@tiptap/extension-document@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-dropcursor@3.19.0(@tiptap/extensions@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extensions': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-gapcursor@3.19.0(@tiptap/extensions@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extensions': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-hard-break@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-heading@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-highlight@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-horizontal-rule@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + + '@tiptap/extension-image@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-italic@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-link@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + linkifyjs: 4.3.2 + + '@tiptap/extension-list-item@3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extension-list': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-list-keymap@3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extension-list': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + + '@tiptap/extension-ordered-list@3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extension-list': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-paragraph@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-placeholder@3.19.0(@tiptap/extensions@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extensions': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-strike@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-subscript@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + + '@tiptap/extension-superscript@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + + '@tiptap/extension-table-cell@3.19.0(@tiptap/extension-table@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extension-table': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-table-header@3.19.0(@tiptap/extension-table@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extension-table': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-table-row@3.19.0(@tiptap/extension-table@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extension-table': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-table@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + + '@tiptap/extension-task-item@3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extension-list': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-task-list@3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/extension-list': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + + '@tiptap/extension-text-align@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-text-style@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-text@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-typography@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extension-underline@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + + '@tiptap/extensions@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + + '@tiptap/pm@3.19.0': + dependencies: + prosemirror-changeset: 2.3.1 + prosemirror-collab: 1.3.1 + prosemirror-commands: 1.7.1 + prosemirror-dropcursor: 1.8.2 + prosemirror-gapcursor: 1.4.0 + prosemirror-history: 1.5.0 + prosemirror-inputrules: 1.5.1 + prosemirror-keymap: 1.2.3 + prosemirror-markdown: 1.13.4 + prosemirror-menu: 1.2.5 + prosemirror-model: 1.25.4 + prosemirror-schema-basic: 1.2.4 + prosemirror-schema-list: 1.5.1 + prosemirror-state: 1.4.4 + prosemirror-tables: 1.8.5 + prosemirror-trailing-node: 3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6) + prosemirror-transform: 1.11.0 + prosemirror-view: 1.41.6 + + '@tiptap/starter-kit@3.19.0': + dependencies: + '@tiptap/core': 3.19.0(@tiptap/pm@3.19.0) + '@tiptap/extension-blockquote': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-bold': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-bullet-list': 3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-code': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-code-block': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/extension-document': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-dropcursor': 3.19.0(@tiptap/extensions@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-gapcursor': 3.19.0(@tiptap/extensions@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-hard-break': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-heading': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-horizontal-rule': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/extension-italic': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-link': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/extension-list': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/extension-list-item': 3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-list-keymap': 3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-ordered-list': 3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0)) + '@tiptap/extension-paragraph': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-strike': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-text': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extension-underline': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0)) + '@tiptap/extensions': 3.19.0(@tiptap/core@3.19.0(@tiptap/pm@3.19.0))(@tiptap/pm@3.19.0) + '@tiptap/pm': 3.19.0 + + '@types/cookie@0.6.0': {} + + '@types/estree@1.0.8': {} + + '@types/hast@3.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/linkify-it@5.0.0': {} + + '@types/markdown-it@14.1.2': + dependencies: + '@types/linkify-it': 5.0.0 + '@types/mdurl': 2.0.0 + + '@types/mdurl@2.0.0': {} + + '@types/unist@3.0.3': {} + + acorn@8.15.0: {} + + argparse@2.0.1: {} + + aria-query@5.3.2: {} + + axobject-query@4.1.0: {} + + chokidar@4.0.3: + dependencies: + readdirp: 4.1.2 + + clsx@2.1.1: {} + + cookie@0.6.0: {} + + crelt@1.0.6: {} + + deepmerge@4.3.1: {} + + dequal@2.0.3: {} + + detect-libc@2.1.2: {} + + devalue@5.6.2: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + enhanced-resolve@5.19.0: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.3.0 + + entities@4.5.0: {} + + esbuild@0.27.3: + optionalDependencies: + '@esbuild/aix-ppc64': 0.27.3 + '@esbuild/android-arm': 0.27.3 + '@esbuild/android-arm64': 0.27.3 + '@esbuild/android-x64': 0.27.3 + '@esbuild/darwin-arm64': 0.27.3 + '@esbuild/darwin-x64': 0.27.3 + '@esbuild/freebsd-arm64': 0.27.3 + '@esbuild/freebsd-x64': 0.27.3 + '@esbuild/linux-arm': 0.27.3 + '@esbuild/linux-arm64': 0.27.3 + '@esbuild/linux-ia32': 0.27.3 + '@esbuild/linux-loong64': 0.27.3 + '@esbuild/linux-mips64el': 0.27.3 + '@esbuild/linux-ppc64': 0.27.3 + '@esbuild/linux-riscv64': 0.27.3 + '@esbuild/linux-s390x': 0.27.3 + '@esbuild/linux-x64': 0.27.3 + '@esbuild/netbsd-arm64': 0.27.3 + '@esbuild/netbsd-x64': 0.27.3 + '@esbuild/openbsd-arm64': 0.27.3 + '@esbuild/openbsd-x64': 0.27.3 + '@esbuild/openharmony-arm64': 0.27.3 + '@esbuild/sunos-x64': 0.27.3 + '@esbuild/win32-arm64': 0.27.3 + '@esbuild/win32-ia32': 0.27.3 + '@esbuild/win32-x64': 0.27.3 + + escape-string-regexp@4.0.0: {} + + esm-env@1.2.2: {} + + esrap@2.2.2: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + + fsevents@2.3.3: + optional: true + + graceful-fs@4.2.11: {} + + highlight.js@11.11.1: {} + + is-reference@3.0.3: + dependencies: + '@types/estree': 1.0.8 + + jiti@2.6.1: {} + + kleur@4.1.5: {} + + lightningcss-android-arm64@1.30.2: + optional: true + + lightningcss-darwin-arm64@1.30.2: + optional: true + + lightningcss-darwin-x64@1.30.2: + optional: true + + lightningcss-freebsd-x64@1.30.2: + optional: true + + lightningcss-linux-arm-gnueabihf@1.30.2: + optional: true + + lightningcss-linux-arm64-gnu@1.30.2: + optional: true + + lightningcss-linux-arm64-musl@1.30.2: + optional: true + + lightningcss-linux-x64-gnu@1.30.2: + optional: true + + lightningcss-linux-x64-musl@1.30.2: + optional: true + + lightningcss-win32-arm64-msvc@1.30.2: + optional: true + + lightningcss-win32-x64-msvc@1.30.2: + optional: true + + lightningcss@1.30.2: + dependencies: + detect-libc: 2.1.2 + optionalDependencies: + lightningcss-android-arm64: 1.30.2 + lightningcss-darwin-arm64: 1.30.2 + lightningcss-darwin-x64: 1.30.2 + lightningcss-freebsd-x64: 1.30.2 + lightningcss-linux-arm-gnueabihf: 1.30.2 + lightningcss-linux-arm64-gnu: 1.30.2 + lightningcss-linux-arm64-musl: 1.30.2 + lightningcss-linux-x64-gnu: 1.30.2 + lightningcss-linux-x64-musl: 1.30.2 + lightningcss-win32-arm64-msvc: 1.30.2 + lightningcss-win32-x64-msvc: 1.30.2 + + linkify-it@5.0.0: + dependencies: + uc.micro: 2.1.0 + + linkifyjs@4.3.2: {} + + locate-character@3.0.0: {} + + lowlight@3.3.0: + dependencies: + '@types/hast': 3.0.4 + devlop: 1.1.0 + highlight.js: 11.11.1 + + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + markdown-it-mark@4.0.0: {} + + markdown-it-sub@2.0.0: {} + + markdown-it-sup@2.0.0: {} + + markdown-it-task-lists@2.1.1: {} + + markdown-it@14.1.0: + dependencies: + argparse: 2.0.1 + entities: 4.5.0 + linkify-it: 5.0.0 + mdurl: 2.0.0 + punycode.js: 2.3.1 + uc.micro: 2.1.0 + + mdurl@2.0.0: {} + + mri@1.2.0: {} + + mrmime@2.0.1: {} + + nanoid@3.3.11: {} + + obug@2.1.1: {} + + orderedmap@2.1.1: {} + + picocolors@1.1.1: {} + + picomatch@4.0.3: {} + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + prosemirror-changeset@2.3.1: + dependencies: + prosemirror-transform: 1.11.0 + + prosemirror-collab@1.3.1: + dependencies: + prosemirror-state: 1.4.4 + + prosemirror-commands@1.7.1: + dependencies: + prosemirror-model: 1.25.4 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.11.0 + + prosemirror-dropcursor@1.8.2: + dependencies: + prosemirror-state: 1.4.4 + prosemirror-transform: 1.11.0 + prosemirror-view: 1.41.6 + + prosemirror-gapcursor@1.4.0: + dependencies: + prosemirror-keymap: 1.2.3 + prosemirror-model: 1.25.4 + prosemirror-state: 1.4.4 + prosemirror-view: 1.41.6 + + prosemirror-history@1.5.0: + dependencies: + prosemirror-state: 1.4.4 + prosemirror-transform: 1.11.0 + prosemirror-view: 1.41.6 + rope-sequence: 1.3.4 + + prosemirror-inputrules@1.5.1: + dependencies: + prosemirror-state: 1.4.4 + prosemirror-transform: 1.11.0 + + prosemirror-keymap@1.2.3: + dependencies: + prosemirror-state: 1.4.4 + w3c-keyname: 2.2.8 + + prosemirror-markdown@1.13.4: + dependencies: + '@types/markdown-it': 14.1.2 + markdown-it: 14.1.0 + prosemirror-model: 1.25.4 + + prosemirror-menu@1.2.5: + dependencies: + crelt: 1.0.6 + prosemirror-commands: 1.7.1 + prosemirror-history: 1.5.0 + prosemirror-state: 1.4.4 + + prosemirror-model@1.25.4: + dependencies: + orderedmap: 2.1.1 + + prosemirror-schema-basic@1.2.4: + dependencies: + prosemirror-model: 1.25.4 + + prosemirror-schema-list@1.5.1: + dependencies: + prosemirror-model: 1.25.4 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.11.0 + + prosemirror-state@1.4.4: + dependencies: + prosemirror-model: 1.25.4 + prosemirror-transform: 1.11.0 + prosemirror-view: 1.41.6 + + prosemirror-tables@1.8.5: + dependencies: + prosemirror-keymap: 1.2.3 + prosemirror-model: 1.25.4 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.11.0 + prosemirror-view: 1.41.6 + + prosemirror-trailing-node@3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6): + dependencies: + '@remirror/core-constants': 3.0.0 + escape-string-regexp: 4.0.0 + prosemirror-model: 1.25.4 + prosemirror-state: 1.4.4 + prosemirror-view: 1.41.6 + + prosemirror-transform@1.11.0: + dependencies: + prosemirror-model: 1.25.4 + + prosemirror-view@1.41.6: + dependencies: + prosemirror-model: 1.25.4 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.11.0 + + punycode.js@2.3.1: {} + + readdirp@4.1.2: {} + + rollup@4.57.1: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.57.1 + '@rollup/rollup-android-arm64': 4.57.1 + '@rollup/rollup-darwin-arm64': 4.57.1 + '@rollup/rollup-darwin-x64': 4.57.1 + '@rollup/rollup-freebsd-arm64': 4.57.1 + '@rollup/rollup-freebsd-x64': 4.57.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.57.1 + '@rollup/rollup-linux-arm-musleabihf': 4.57.1 + '@rollup/rollup-linux-arm64-gnu': 4.57.1 + '@rollup/rollup-linux-arm64-musl': 4.57.1 + '@rollup/rollup-linux-loong64-gnu': 4.57.1 + '@rollup/rollup-linux-loong64-musl': 4.57.1 + '@rollup/rollup-linux-ppc64-gnu': 4.57.1 + '@rollup/rollup-linux-ppc64-musl': 4.57.1 + '@rollup/rollup-linux-riscv64-gnu': 4.57.1 + '@rollup/rollup-linux-riscv64-musl': 4.57.1 + '@rollup/rollup-linux-s390x-gnu': 4.57.1 + '@rollup/rollup-linux-x64-gnu': 4.57.1 + '@rollup/rollup-linux-x64-musl': 4.57.1 + '@rollup/rollup-openbsd-x64': 4.57.1 + '@rollup/rollup-openharmony-arm64': 4.57.1 + '@rollup/rollup-win32-arm64-msvc': 4.57.1 + '@rollup/rollup-win32-ia32-msvc': 4.57.1 + '@rollup/rollup-win32-x64-gnu': 4.57.1 + '@rollup/rollup-win32-x64-msvc': 4.57.1 + fsevents: 2.3.3 + + rope-sequence@1.3.4: {} + + sade@1.8.1: + dependencies: + mri: 1.2.0 + + set-cookie-parser@3.0.1: {} + + sirv@3.0.2: + dependencies: + '@polka/url': 1.0.0-next.29 + mrmime: 2.0.1 + totalist: 3.0.1 + + source-map-js@1.2.1: {} + + svelte-check@4.3.6(picomatch@4.0.3)(svelte@5.50.0)(typescript@5.9.3): + dependencies: + '@jridgewell/trace-mapping': 0.3.31 + chokidar: 4.0.3 + fdir: 6.5.0(picomatch@4.0.3) + picocolors: 1.1.1 + sade: 1.8.1 + svelte: 5.50.0 + typescript: 5.9.3 + transitivePeerDependencies: + - picomatch + + svelte@5.50.0: + dependencies: + '@jridgewell/remapping': 2.3.5 + '@jridgewell/sourcemap-codec': 1.5.5 + '@sveltejs/acorn-typescript': 1.0.8(acorn@8.15.0) + '@types/estree': 1.0.8 + acorn: 8.15.0 + aria-query: 5.3.2 + axobject-query: 4.1.0 + clsx: 2.1.1 + devalue: 5.6.2 + esm-env: 1.2.2 + esrap: 2.2.2 + is-reference: 3.0.3 + locate-character: 3.0.0 + magic-string: 0.30.21 + zimmerframe: 1.1.4 + + tailwindcss@4.1.18: {} + + tapable@2.3.0: {} + + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + + totalist@3.0.1: {} + + typescript@5.9.3: {} + + uc.micro@2.1.0: {} + + vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2): + dependencies: + esbuild: 0.27.3 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.57.1 + tinyglobby: 0.2.15 + optionalDependencies: + fsevents: 2.3.3 + jiti: 2.6.1 + lightningcss: 1.30.2 + + vitefu@1.1.1(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)): + optionalDependencies: + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) + + w3c-keyname@2.2.8: {} + + zimmerframe@1.1.4: {} diff --git a/src-tauri/.gitignore b/src-tauri/.gitignore new file mode 100644 index 0000000..502406b --- /dev/null +++ b/src-tauri/.gitignore @@ -0,0 +1,4 @@ +# Generated by Cargo +# will have compiled files and executables +/target/ +/gen/schemas diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock new file mode 100644 index 0000000..2377bef --- /dev/null +++ b/src-tauri/Cargo.lock @@ -0,0 +1,6885 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "ahash" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" +dependencies = [ + "getrandom 0.2.17", + "once_cell", + "version_check", +] + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "alloc-no-stdlib" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" + +[[package]] +name = "alloc-stdlib" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + +[[package]] +name = "android_log-sys" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d" + +[[package]] +name = "android_logger" +version = "0.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3" +dependencies = [ + "android_log-sys", + "env_filter", + "log", +] + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.101" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea" + +[[package]] +name = "arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" +dependencies = [ + "derive_arbitrary", +] + +[[package]] +name = "arc-swap" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ded5f9a03ac8f24d1b8a25101ee812cd32cdc8c50a4c50237de2c4915850e73" +dependencies = [ + "rustversion", +] + +[[package]] +name = "arraydeque" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236" + +[[package]] +name = "arrayvec" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + +[[package]] +name = "async-broadcast" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" +dependencies = [ + "event-listener", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-channel" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" +dependencies = [ + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-executor" +version = "1.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8" +dependencies = [ + "async-task", + "concurrent-queue", + "fastrand", + "futures-lite", + "pin-project-lite", + "slab", +] + +[[package]] +name = "async-io" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" +dependencies = [ + "autocfg", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite", + "parking", + "polling", + "rustix 1.1.3", + "slab", + "windows-sys 0.61.2", +] + +[[package]] +name = "async-lock" +version = "3.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" +dependencies = [ + "event-listener", + "event-listener-strategy", + "pin-project-lite", +] + +[[package]] +name = "async-process" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" +dependencies = [ + "async-channel", + "async-io", + "async-lock", + "async-signal", + "async-task", + "blocking", + "cfg-if", + "event-listener", + "futures-lite", + "rustix 1.1.3", +] + +[[package]] +name = "async-recursion" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "async-signal" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" +dependencies = [ + "async-io", + "async-lock", + "atomic-waker", + "cfg-if", + "futures-core", + "futures-io", + "rustix 1.1.3", + "signal-hook-registry", + "slab", + "windows-sys 0.61.2", +] + +[[package]] +name = "async-task" +version = "4.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" + +[[package]] +name = "async-trait" +version = "0.1.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "atk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" +dependencies = [ + "atk-sys", + "glib", + "libc", +] + +[[package]] +name = "atk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" +dependencies = [ + "serde_core", +] + +[[package]] +name = "bitpacking" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96a7139abd3d9cebf8cd6f920a389cf3dc9576172e32f4563f188cae3c3eb019" +dependencies = [ + "crunchy", +] + +[[package]] +name = "bitvec" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" +dependencies = [ + "objc2", +] + +[[package]] +name = "blocking" +version = "1.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" +dependencies = [ + "async-channel", + "async-task", + "futures-io", + "futures-lite", + "piper", +] + +[[package]] +name = "borsh" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" +dependencies = [ + "borsh-derive", + "cfg_aliases", +] + +[[package]] +name = "borsh-derive" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c" +dependencies = [ + "once_cell", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "brotli" +version = "8.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "bumpalo" +version = "3.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" + +[[package]] +name = "byte-unit" +version = "5.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c6d47a4e2961fb8721bcfc54feae6455f2f64e7054f9bc67e875f0e77f4c58d" +dependencies = [ + "rust_decimal", + "schemars 1.2.1", + "serde", + "utf8-width", +] + +[[package]] +name = "bytecheck" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" +dependencies = [ + "bytecheck_derive", + "ptr_meta", + "simdutf8", +] + +[[package]] +name = "bytecheck_derive" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "bytemuck" +version = "1.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "byteorder-lite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" +dependencies = [ + "serde", +] + +[[package]] +name = "cairo-rs" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" +dependencies = [ + "bitflags 2.10.0", + "cairo-sys-rs", + "glib", + "libc", + "once_cell", + "thiserror 1.0.69", +] + +[[package]] +name = "cairo-sys-rs" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "camino" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" +dependencies = [ + "serde_core", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.19.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.18", +] + +[[package]] +name = "cargo_toml" +version = "0.22.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" +dependencies = [ + "serde", + "toml 0.9.11+spec-1.1.0", +] + +[[package]] +name = "cc" +version = "1.2.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29" +dependencies = [ + "find-msvc-tools", + "jobserver", + "libc", + "shlex", +] + +[[package]] +name = "census" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0" + +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + +[[package]] +name = "cfb" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" +dependencies = [ + "byteorder", + "fnv", + "uuid", +] + +[[package]] +name = "cfg-expr" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" +dependencies = [ + "smallvec", + "target-lexicon", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + +[[package]] +name = "chrono" +version = "0.4.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118" +dependencies = [ + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link 0.2.1", +] + +[[package]] +name = "combine" +version = "4.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +dependencies = [ + "bytes", + "memchr", +] + +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "convert_case" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + +[[package]] +name = "cookie" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" +dependencies = [ + "time", + "version_check", +] + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "core-graphics" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" +dependencies = [ + "bitflags 2.10.0", + "core-foundation 0.10.1", + "core-graphics-types", + "foreign-types 0.5.0", + "libc", +] + +[[package]] +name = "core-graphics-types" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" +dependencies = [ + "bitflags 2.10.0", + "core-foundation 0.10.1", + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crunchy" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "cssparser" +version = "0.29.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "matches", + "phf 0.10.1", + "proc-macro2", + "quote", + "smallvec", + "syn 1.0.109", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn 2.0.114", +] + +[[package]] +name = "ctor" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" +dependencies = [ + "quote", + "syn 2.0.114", +] + +[[package]] +name = "darling" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.114", +] + +[[package]] +name = "darling_macro" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "deranged" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" +dependencies = [ + "powerfmt", + "serde_core", +] + +[[package]] +name = "derive_arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "derive_more" +version = "0.99.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.114", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "dirs" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", +] + +[[package]] +name = "dispatch" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" + +[[package]] +name = "dispatch2" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" +dependencies = [ + "bitflags 2.10.0", + "block2", + "libc", + "objc2", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "dlopen2" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4" +dependencies = [ + "dlopen2_derive", + "libc", + "once_cell", + "winapi", +] + +[[package]] +name = "dlopen2_derive" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "downcast-rs" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" + +[[package]] +name = "dpi" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" +dependencies = [ + "serde", +] + +[[package]] +name = "dtoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "dunce" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + +[[package]] +name = "dyn-clone" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" + +[[package]] +name = "either" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" + +[[package]] +name = "embed-resource" +version = "3.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e" +dependencies = [ + "cc", + "memchr", + "rustc_version", + "toml 0.9.11+spec-1.1.0", + "vswhom", + "winreg", +] + +[[package]] +name = "embed_plist" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" + +[[package]] +name = "encoding_rs" +version = "0.8.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "endi" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099" + +[[package]] +name = "enumflags2" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" +dependencies = [ + "enumflags2_derive", + "serde", +] + +[[package]] +name = "enumflags2_derive" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "env_filter" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" +dependencies = [ + "log", + "regex", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "erased-serde" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" +dependencies = [ + "serde", + "serde_core", + "typeid", +] + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "event-listener" +version = "5.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" +dependencies = [ + "event-listener", + "pin-project-lite", +] + +[[package]] +name = "fastdivide" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471" + +[[package]] +name = "fastrand" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "fern" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29" +dependencies = [ + "log", +] + +[[package]] +name = "field-offset" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" +dependencies = [ + "memoffset", + "rustc_version", +] + +[[package]] +name = "filetime" +version = "0.2.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" +dependencies = [ + "cfg-if", + "libc", + "libredox", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "flate2" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared 0.1.1", +] + +[[package]] +name = "foreign-types" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" +dependencies = [ + "foreign-types-macros", + "foreign-types-shared 0.3.1", +] + +[[package]] +name = "foreign-types-macros" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "foreign-types-shared" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "fs4" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8" +dependencies = [ + "rustix 0.38.44", + "windows-sys 0.52.0", +] + +[[package]] +name = "fsevent-sys" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" +dependencies = [ + "libc", +] + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "futf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" +dependencies = [ + "mac", + "new_debug_unreachable", +] + +[[package]] +name = "futures" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" + +[[package]] +name = "futures-executor" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" + +[[package]] +name = "futures-lite" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" +dependencies = [ + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", +] + +[[package]] +name = "futures-macro" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "futures-sink" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" + +[[package]] +name = "futures-task" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" + +[[package]] +name = "futures-util" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "gdk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" +dependencies = [ + "cairo-rs", + "gdk-pixbuf", + "gdk-sys", + "gio", + "glib", + "libc", + "pango", +] + +[[package]] +name = "gdk-pixbuf" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" +dependencies = [ + "gdk-pixbuf-sys", + "gio", + "glib", + "libc", + "once_cell", +] + +[[package]] +name = "gdk-pixbuf-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gdk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" +dependencies = [ + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkwayland-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" +dependencies = [ + "gdk-sys", + "glib-sys", + "gobject-sys", + "libc", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkx11" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" +dependencies = [ + "gdk", + "gdkx11-sys", + "gio", + "glib", + "libc", + "x11", +] + +[[package]] +name = "gdkx11-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" +dependencies = [ + "gdk-sys", + "glib-sys", + "libc", + "system-deps", + "x11", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasip2", +] + +[[package]] +name = "gio" +version = "0.18.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "gio-sys", + "glib", + "libc", + "once_cell", + "pin-project-lite", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "gio-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", + "winapi", +] + +[[package]] +name = "glib" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" +dependencies = [ + "bitflags 2.10.0", + "futures-channel", + "futures-core", + "futures-executor", + "futures-task", + "futures-util", + "gio-sys", + "glib-macros", + "glib-sys", + "gobject-sys", + "libc", + "memchr", + "once_cell", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "glib-macros" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" +dependencies = [ + "heck 0.4.1", + "proc-macro-crate 2.0.2", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "glib-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" +dependencies = [ + "libc", + "system-deps", +] + +[[package]] +name = "glob" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" + +[[package]] +name = "gobject-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gray_matter" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8666976c40b8633f918783969b6681a3ddb205f29150348617de425d85a3e3bd" +dependencies = [ + "serde", + "serde_json", + "toml 0.5.11", + "yaml-rust2", +] + +[[package]] +name = "gtk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" +dependencies = [ + "atk", + "cairo-rs", + "field-offset", + "futures-channel", + "gdk", + "gdk-pixbuf", + "gio", + "glib", + "gtk-sys", + "gtk3-macros", + "libc", + "pango", + "pkg-config", +] + +[[package]] +name = "gtk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" +dependencies = [ + "atk-sys", + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "system-deps", +] + +[[package]] +name = "gtk3-macros" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" +dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "h2" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http", + "indexmap 2.13.0", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash 0.7.8", +] + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash 0.8.12", + "allocator-api2", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + +[[package]] +name = "hashlink" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" +dependencies = [ + "hashbrown 0.14.5", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "helixnotes" +version = "1.0.0" +dependencies = [ + "chrono", + "dirs", + "futures", + "gray_matter", + "log", + "notify", + "rayon", + "regex", + "reqwest 0.12.28", + "serde", + "serde_json", + "serde_yaml", + "tantivy", + "tauri", + "tauri-build", + "tauri-plugin-dialog", + "tauri-plugin-fs", + "tauri-plugin-log", + "tauri-plugin-opener", + "tauri-plugin-updater", + "tokio", + "uuid", + "walkdir", + "zip 2.4.2", +] + +[[package]] +name = "hermit-abi" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "html5ever" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" +dependencies = [ + "log", + "mac", + "markup5ever", + "match_token", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" + +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "http-range" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "hyper" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.27.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" +dependencies = [ + "http", + "hyper", + "hyper-util", + "rustls", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", +] + +[[package]] +name = "hyper-tls" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +dependencies = [ + "bytes", + "http-body-util", + "hyper", + "hyper-util", + "native-tls", + "tokio", + "tokio-native-tls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "system-configuration", + "tokio", + "tower-service", + "tracing", + "windows-registry", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "ico" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371" +dependencies = [ + "byteorder", + "png 0.17.16", +] + +[[package]] +name = "icu_collections" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" +dependencies = [ + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" + +[[package]] +name = "icu_properties" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" + +[[package]] +name = "icu_provider" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "image" +version = "0.25.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a" +dependencies = [ + "bytemuck", + "byteorder-lite", + "moxcms", + "num-traits", + "png 0.18.0", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" +dependencies = [ + "equivalent", + "hashbrown 0.16.1", + "serde", + "serde_core", +] + +[[package]] +name = "infer" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" +dependencies = [ + "cfb", +] + +[[package]] +name = "inotify" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3" +dependencies = [ + "bitflags 2.10.0", + "inotify-sys", + "libc", +] + +[[package]] +name = "inotify-sys" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" +dependencies = [ + "libc", +] + +[[package]] +name = "instant" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "ipnet" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" + +[[package]] +name = "iri-string" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "is-docker" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" +dependencies = [ + "once_cell", +] + +[[package]] +name = "is-wsl" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" +dependencies = [ + "is-docker", + "once_cell", +] + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" + +[[package]] +name = "javascriptcore-rs" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" +dependencies = [ + "bitflags 1.3.2", + "glib", + "javascriptcore-rs-sys", +] + +[[package]] +name = "javascriptcore-rs-sys" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "jni" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" +dependencies = [ + "cesu8", + "cfg-if", + "combine", + "jni-sys", + "log", + "thiserror 1.0.69", + "walkdir", + "windows-sys 0.45.0", +] + +[[package]] +name = "jni-sys" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" + +[[package]] +name = "jobserver" +version = "0.1.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" +dependencies = [ + "getrandom 0.3.4", + "libc", +] + +[[package]] +name = "js-sys" +version = "0.3.85" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3" +dependencies = [ + "once_cell", + "wasm-bindgen", +] + +[[package]] +name = "json-patch" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" +dependencies = [ + "jsonptr", + "serde", + "serde_json", + "thiserror 1.0.69", +] + +[[package]] +name = "jsonptr" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" +dependencies = [ + "serde", + "serde_json", +] + +[[package]] +name = "keyboard-types" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" +dependencies = [ + "bitflags 2.10.0", + "serde", + "unicode-segmentation", +] + +[[package]] +name = "kqueue" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a" +dependencies = [ + "kqueue-sys", + "libc", +] + +[[package]] +name = "kqueue-sys" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" +dependencies = [ + "bitflags 1.3.2", + "libc", +] + +[[package]] +name = "kuchikiki" +version = "0.8.8-speedreader" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" +dependencies = [ + "cssparser", + "html5ever", + "indexmap 2.13.0", + "selectors", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "levenshtein_automata" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" + +[[package]] +name = "libappindicator" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" +dependencies = [ + "glib", + "gtk", + "gtk-sys", + "libappindicator-sys", + "log", +] + +[[package]] +name = "libappindicator-sys" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" +dependencies = [ + "gtk-sys", + "libloading", + "once_cell", +] + +[[package]] +name = "libc" +version = "0.2.180" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc" + +[[package]] +name = "libloading" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +dependencies = [ + "cfg-if", + "winapi", +] + +[[package]] +name = "libm" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" + +[[package]] +name = "libredox" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" +dependencies = [ + "bitflags 2.10.0", + "libc", + "redox_syscall 0.7.0", +] + +[[package]] +name = "linux-raw-sys" +version = "0.4.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" + +[[package]] +name = "linux-raw-sys" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" + +[[package]] +name = "litemap" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" +dependencies = [ + "value-bag", +] + +[[package]] +name = "lru" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" +dependencies = [ + "hashbrown 0.15.5", +] + +[[package]] +name = "lz4_flex" +version = "0.11.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a" + +[[package]] +name = "mac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + +[[package]] +name = "markup5ever" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" +dependencies = [ + "log", + "phf 0.11.3", + "phf_codegen 0.11.3", + "string_cache", + "string_cache_codegen", + "tendril", +] + +[[package]] +name = "match_token" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "matches" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" + +[[package]] +name = "measure_time" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbefd235b0aadd181626f281e1d684e116972988c14c264e42069d5e8a5775cc" +dependencies = [ + "instant", + "log", +] + +[[package]] +name = "memchr" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + +[[package]] +name = "memmap2" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490" +dependencies = [ + "libc", +] + +[[package]] +name = "memoffset" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +dependencies = [ + "autocfg", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "minisign-verify" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e856fdd13623a2f5f2f54676a4ee49502a96a80ef4a62bcedd23d52427c44d43" + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" +dependencies = [ + "libc", + "log", + "wasi 0.11.1+wasi-snapshot-preview1", + "windows-sys 0.61.2", +] + +[[package]] +name = "moxcms" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97" +dependencies = [ + "num-traits", + "pxfm", +] + +[[package]] +name = "muda" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a" +dependencies = [ + "crossbeam-channel", + "dpi", + "gtk", + "keyboard-types", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "once_cell", + "png 0.17.16", + "serde", + "thiserror 2.0.18", + "windows-sys 0.60.2", +] + +[[package]] +name = "murmurhash32" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b" + +[[package]] +name = "native-tls" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe 0.1.6", + "openssl-sys", + "schannel", + "security-framework 2.11.1", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "ndk" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" +dependencies = [ + "bitflags 2.10.0", + "jni-sys", + "log", + "ndk-sys", + "num_enum", + "raw-window-handle", + "thiserror 1.0.69", +] + +[[package]] +name = "ndk-context" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" + +[[package]] +name = "ndk-sys" +version = "0.6.0+11769913" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" +dependencies = [ + "jni-sys", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "nodrop" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "notify" +version = "8.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3" +dependencies = [ + "bitflags 2.10.0", + "fsevent-sys", + "inotify", + "kqueue", + "libc", + "log", + "mio", + "notify-types", + "walkdir", + "windows-sys 0.60.2", +] + +[[package]] +name = "notify-types" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a" +dependencies = [ + "bitflags 2.10.0", +] + +[[package]] +name = "num-conv" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", + "libm", +] + +[[package]] +name = "num_cpus" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "num_enum" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c" +dependencies = [ + "num_enum_derive", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7" +dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "num_threads" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" +dependencies = [ + "libc", +] + +[[package]] +name = "objc2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05" +dependencies = [ + "objc2-encode", + "objc2-exception-helper", +] + +[[package]] +name = "objc2-app-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" +dependencies = [ + "bitflags 2.10.0", + "block2", + "libc", + "objc2", + "objc2-cloud-kit", + "objc2-core-data", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-core-image", + "objc2-core-text", + "objc2-core-video", + "objc2-foundation", + "objc2-quartz-core", +] + +[[package]] +name = "objc2-cloud-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-data" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" +dependencies = [ + "bitflags 2.10.0", + "dispatch2", + "objc2", +] + +[[package]] +name = "objc2-core-graphics" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" +dependencies = [ + "bitflags 2.10.0", + "dispatch2", + "objc2", + "objc2-core-foundation", + "objc2-io-surface", +] + +[[package]] +name = "objc2-core-image" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006" +dependencies = [ + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-text" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-foundation", + "objc2-core-graphics", +] + +[[package]] +name = "objc2-core-video" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-io-surface", +] + +[[package]] +name = "objc2-encode" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + +[[package]] +name = "objc2-exception-helper" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" +dependencies = [ + "cc", +] + +[[package]] +name = "objc2-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" +dependencies = [ + "bitflags 2.10.0", + "block2", + "libc", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-io-surface" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-javascript-core" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a1e6550c4caed348956ce3370c9ffeca70bb1dbed4fa96112e7c6170e074586" +dependencies = [ + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-osa-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f112d1746737b0da274ef79a23aac283376f335f4095a083a267a082f21db0c0" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-app-kit", + "objc2-foundation", +] + +[[package]] +name = "objc2-quartz-core" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-security" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-ui-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" +dependencies = [ + "bitflags 2.10.0", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-web-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f" +dependencies = [ + "bitflags 2.10.0", + "block2", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "objc2-javascript-core", + "objc2-security", +] + +[[package]] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "oneshot" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "269bca4c2591a28585d6bf10d9ed0332b7d76900a1b02bec41bdc3a2cdcda107" + +[[package]] +name = "open" +version = "5.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc" +dependencies = [ + "dunce", + "is-wsl", + "libc", + "pathdiff", +] + +[[package]] +name = "openssl" +version = "0.10.75" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328" +dependencies = [ + "bitflags 2.10.0", + "cfg-if", + "foreign-types 0.3.2", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "openssl-probe" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" + +[[package]] +name = "openssl-probe" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" + +[[package]] +name = "openssl-sys" +version = "0.9.111" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "ordered-stream" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" +dependencies = [ + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "osakit" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b" +dependencies = [ + "objc2", + "objc2-foundation", + "objc2-osa-kit", + "serde", + "serde_json", + "thiserror 2.0.18", +] + +[[package]] +name = "ownedbytes" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3a059efb063b8f425b948e042e6b9bd85edfe60e913630ed727b23e2dfcc558" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "pango" +version = "0.18.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" +dependencies = [ + "gio", + "glib", + "libc", + "once_cell", + "pango-sys", +] + +[[package]] +name = "pango-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "parking" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall 0.5.18", + "smallvec", + "windows-link 0.2.1", +] + +[[package]] +name = "pathdiff" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "phf" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" +dependencies = [ + "phf_shared 0.8.0", +] + +[[package]] +name = "phf" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" +dependencies = [ + "phf_macros 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", +] + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_codegen" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" +dependencies = [ + "phf_generator 0.8.0", + "phf_shared 0.8.0", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_generator" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" +dependencies = [ + "phf_shared 0.8.0", + "rand 0.7.3", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared 0.10.0", + "rand 0.8.5", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared 0.11.3", + "rand 0.8.5", +] + +[[package]] +name = "phf_macros" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" +dependencies = [ + "phf_generator 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "phf_shared" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher 1.0.2", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "piper" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" +dependencies = [ + "atomic-waker", + "fastrand", + "futures-io", +] + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "plist" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" +dependencies = [ + "base64 0.22.1", + "indexmap 2.13.0", + "quick-xml", + "serde", + "time", +] + +[[package]] +name = "png" +version = "0.17.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" +dependencies = [ + "bitflags 1.3.2", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "png" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0" +dependencies = [ + "bitflags 2.10.0", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "polling" +version = "3.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" +dependencies = [ + "cfg-if", + "concurrent-queue", + "hermit-abi", + "pin-project-lite", + "rustix 1.1.3", + "windows-sys 0.61.2", +] + +[[package]] +name = "potential_utf" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.15", +] + +[[package]] +name = "proc-macro-crate" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" +dependencies = [ + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "proc-macro-crate" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" +dependencies = [ + "toml_edit 0.23.10+spec-1.0.0", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.20+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "ptr_meta" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" +dependencies = [ + "ptr_meta_derive", +] + +[[package]] +name = "ptr_meta_derive" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "pxfm" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8" +dependencies = [ + "num-traits", +] + +[[package]] +name = "quick-xml" +version = "0.38.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom 0.1.16", + "libc", + "rand_chacha 0.2.2", + "rand_core 0.5.1", + "rand_hc", + "rand_pcg", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core 0.5.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "rand_distr" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" +dependencies = [ + "num-traits", + "rand 0.8.5", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "rand_pcg" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "raw-window-handle" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" + +[[package]] +name = "rayon" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.10.0", +] + +[[package]] +name = "redox_syscall" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" +dependencies = [ + "bitflags 2.10.0", +] + +[[package]] +name = "redox_users" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" +dependencies = [ + "getrandom 0.2.17", + "libredox", + "thiserror 2.0.18", +] + +[[package]] +name = "ref-cast" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" +dependencies = [ + "ref-cast-impl", +] + +[[package]] +name = "ref-cast-impl" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "regex" +version = "1.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c" + +[[package]] +name = "rend" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" +dependencies = [ + "bytecheck", +] + +[[package]] +name = "reqwest" +version = "0.12.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" +dependencies = [ + "base64 0.22.1", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-tls", + "hyper-util", + "js-sys", + "log", + "mime", + "native-tls", + "percent-encoding", + "pin-project-lite", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-native-tls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams 0.4.2", + "web-sys", +] + +[[package]] +name = "reqwest" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "rustls", + "rustls-pki-types", + "rustls-platform-verifier", + "serde", + "serde_json", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams 0.5.0", + "web-sys", +] + +[[package]] +name = "rfd" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672" +dependencies = [ + "block2", + "dispatch2", + "glib-sys", + "gobject-sys", + "gtk-sys", + "js-sys", + "log", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "raw-window-handle", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "windows-sys 0.60.2", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rkyv" +version = "0.7.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1" +dependencies = [ + "bitvec", + "bytecheck", + "bytes", + "hashbrown 0.12.3", + "ptr_meta", + "rend", + "rkyv_derive", + "seahash", + "tinyvec", + "uuid", +] + +[[package]] +name = "rkyv_derive" +version = "0.7.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "rust-stemmers" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" +dependencies = [ + "serde", + "serde_derive", +] + +[[package]] +name = "rust_decimal" +version = "1.40.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0" +dependencies = [ + "arrayvec", + "borsh", + "bytes", + "num-traits", + "rand 0.8.5", + "rkyv", + "serde", + "serde_json", +] + +[[package]] +name = "rustc-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "0.38.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" +dependencies = [ + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", +] + +[[package]] +name = "rustix" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" +dependencies = [ + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.11.0", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls" +version = "0.23.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" +dependencies = [ + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-native-certs" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" +dependencies = [ + "openssl-probe 0.2.1", + "rustls-pki-types", + "schannel", + "security-framework 3.5.1", +] + +[[package]] +name = "rustls-pki-types" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" +dependencies = [ + "zeroize", +] + +[[package]] +name = "rustls-platform-verifier" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784" +dependencies = [ + "core-foundation 0.10.1", + "core-foundation-sys", + "jni", + "log", + "once_cell", + "rustls", + "rustls-native-certs", + "rustls-platform-verifier-android", + "rustls-webpki", + "security-framework 3.5.1", + "security-framework-sys", + "webpki-root-certs", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls-platform-verifier-android" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" + +[[package]] +name = "rustls-webpki" +version = "0.103.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "ryu" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schannel" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "schemars" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" +dependencies = [ + "dyn-clone", + "indexmap 1.9.3", + "schemars_derive", + "serde", + "serde_json", + "url", + "uuid", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars_derive" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" +dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.114", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "seahash" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" + +[[package]] +name = "security-framework" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" +dependencies = [ + "bitflags 2.10.0", + "core-foundation 0.9.4", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework" +version = "3.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" +dependencies = [ + "bitflags 2.10.0", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "selectors" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" +dependencies = [ + "bitflags 1.3.2", + "cssparser", + "derive_more", + "fxhash", + "log", + "phf 0.8.0", + "phf_codegen 0.8.0", + "precomputed-hash", + "servo_arc", + "smallvec", +] + +[[package]] +name = "semver" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" +dependencies = [ + "serde", + "serde_core", +] + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde-untagged" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058" +dependencies = [ + "erased-serde", + "serde", + "serde_core", + "typeid", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "serde_derive_internals" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_repr" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "serde_spanned" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_spanned" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_with" +version = "3.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" +dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.13.0", + "schemars 0.9.0", + "schemars 1.2.1", + "serde_core", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "serde_yaml" +version = "0.9.34+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" +dependencies = [ + "indexmap 2.13.0", + "itoa", + "ryu", + "serde", + "unsafe-libyaml", +] + +[[package]] +name = "serialize-to-javascript" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5" +dependencies = [ + "serde", + "serde_json", + "serialize-to-javascript-impl", +] + +[[package]] +name = "serialize-to-javascript-impl" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "servo_arc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" +dependencies = [ + "nodrop", + "stable_deref_trait", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "signal-hook-registry" +version = "1.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" +dependencies = [ + "errno", + "libc", +] + +[[package]] +name = "simd-adler32" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" + +[[package]] +name = "simdutf8" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + +[[package]] +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "siphasher" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" + +[[package]] +name = "sketches-ddsketch" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c" +dependencies = [ + "serde", +] + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" +dependencies = [ + "libc", + "windows-sys 0.60.2", +] + +[[package]] +name = "softbuffer" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3" +dependencies = [ + "bytemuck", + "js-sys", + "ndk", + "objc2", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "objc2-quartz-core", + "raw-window-handle", + "redox_syscall 0.5.18", + "tracing", + "wasm-bindgen", + "web-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "soup3" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" +dependencies = [ + "futures-channel", + "gio", + "glib", + "libc", + "soup3-sys", +] + +[[package]] +name = "soup3-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "string_cache" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared 0.11.3", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "swift-rs" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" +dependencies = [ + "base64 0.21.7", + "serde", + "serde_json", +] + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "system-configuration" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" +dependencies = [ + "bitflags 2.10.0", + "core-foundation 0.9.4", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "system-deps" +version = "6.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" +dependencies = [ + "cfg-expr", + "heck 0.5.0", + "pkg-config", + "toml 0.8.2", + "version-compare", +] + +[[package]] +name = "tantivy" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96599ea6fccd844fc833fed21d2eecac2e6a7c1afd9e044057391d78b1feb141" +dependencies = [ + "aho-corasick", + "arc-swap", + "base64 0.22.1", + "bitpacking", + "byteorder", + "census", + "crc32fast", + "crossbeam-channel", + "downcast-rs", + "fastdivide", + "fnv", + "fs4", + "htmlescape", + "itertools", + "levenshtein_automata", + "log", + "lru", + "lz4_flex", + "measure_time", + "memmap2", + "num_cpus", + "once_cell", + "oneshot", + "rayon", + "regex", + "rust-stemmers", + "rustc-hash", + "serde", + "serde_json", + "sketches-ddsketch", + "smallvec", + "tantivy-bitpacker", + "tantivy-columnar", + "tantivy-common", + "tantivy-fst", + "tantivy-query-grammar", + "tantivy-stacker", + "tantivy-tokenizer-api", + "tempfile", + "thiserror 1.0.69", + "time", + "uuid", + "winapi", +] + +[[package]] +name = "tantivy-bitpacker" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "284899c2325d6832203ac6ff5891b297fc5239c3dc754c5bc1977855b23c10df" +dependencies = [ + "bitpacking", +] + +[[package]] +name = "tantivy-columnar" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12722224ffbe346c7fec3275c699e508fd0d4710e629e933d5736ec524a1f44e" +dependencies = [ + "downcast-rs", + "fastdivide", + "itertools", + "serde", + "tantivy-bitpacker", + "tantivy-common", + "tantivy-sstable", + "tantivy-stacker", +] + +[[package]] +name = "tantivy-common" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8019e3cabcfd20a1380b491e13ff42f57bb38bf97c3d5fa5c07e50816e0621f4" +dependencies = [ + "async-trait", + "byteorder", + "ownedbytes", + "serde", + "time", +] + +[[package]] +name = "tantivy-fst" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18" +dependencies = [ + "byteorder", + "regex-syntax", + "utf8-ranges", +] + +[[package]] +name = "tantivy-query-grammar" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "847434d4af57b32e309f4ab1b4f1707a6c566656264caa427ff4285c4d9d0b82" +dependencies = [ + "nom", +] + +[[package]] +name = "tantivy-sstable" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c69578242e8e9fc989119f522ba5b49a38ac20f576fc778035b96cc94f41f98e" +dependencies = [ + "tantivy-bitpacker", + "tantivy-common", + "tantivy-fst", + "zstd", +] + +[[package]] +name = "tantivy-stacker" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56d6ff5591fc332739b3ce7035b57995a3ce29a93ffd6012660e0949c956ea8" +dependencies = [ + "murmurhash32", + "rand_distr", + "tantivy-common", +] + +[[package]] +name = "tantivy-tokenizer-api" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a0dcade25819a89cfe6f17d932c9cedff11989936bf6dd4f336d50392053b04" +dependencies = [ + "serde", +] + +[[package]] +name = "tao" +version = "0.34.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7" +dependencies = [ + "bitflags 2.10.0", + "block2", + "core-foundation 0.10.1", + "core-graphics", + "crossbeam-channel", + "dispatch", + "dlopen2", + "dpi", + "gdkwayland-sys", + "gdkx11-sys", + "gtk", + "jni", + "lazy_static", + "libc", + "log", + "ndk", + "ndk-context", + "ndk-sys", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "once_cell", + "parking_lot", + "raw-window-handle", + "scopeguard", + "tao-macros", + "unicode-segmentation", + "url", + "windows", + "windows-core 0.61.2", + "windows-version", + "x11-dl", +] + +[[package]] +name = "tao-macros" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "tar" +version = "0.4.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" +dependencies = [ + "filetime", + "libc", + "xattr", +] + +[[package]] +name = "target-lexicon" +version = "0.12.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" + +[[package]] +name = "tauri" +version = "2.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "463ae8677aa6d0f063a900b9c41ecd4ac2b7ca82f0b058cc4491540e55b20129" +dependencies = [ + "anyhow", + "bytes", + "cookie", + "dirs", + "dunce", + "embed_plist", + "getrandom 0.3.4", + "glob", + "gtk", + "heck 0.5.0", + "http", + "http-range", + "image", + "jni", + "libc", + "log", + "mime", + "muda", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "objc2-ui-kit", + "objc2-web-kit", + "percent-encoding", + "plist", + "raw-window-handle", + "reqwest 0.13.2", + "serde", + "serde_json", + "serde_repr", + "serialize-to-javascript", + "swift-rs", + "tauri-build", + "tauri-macros", + "tauri-runtime", + "tauri-runtime-wry", + "tauri-utils", + "thiserror 2.0.18", + "tokio", + "tray-icon", + "url", + "webkit2gtk", + "webview2-com", + "window-vibrancy", + "windows", +] + +[[package]] +name = "tauri-build" +version = "2.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca7bd893329425df750813e95bd2b643d5369d929438da96d5bbb7cc2c918f74" +dependencies = [ + "anyhow", + "cargo_toml", + "dirs", + "glob", + "heck 0.5.0", + "json-patch", + "schemars 0.8.22", + "semver", + "serde", + "serde_json", + "tauri-utils", + "tauri-winres", + "toml 0.9.11+spec-1.1.0", + "walkdir", +] + +[[package]] +name = "tauri-codegen" +version = "2.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aac423e5859d9f9ccdd32e3cf6a5866a15bedbf25aa6630bcb2acde9468f6ae3" +dependencies = [ + "base64 0.22.1", + "brotli", + "ico", + "json-patch", + "plist", + "png 0.17.16", + "proc-macro2", + "quote", + "semver", + "serde", + "serde_json", + "sha2", + "syn 2.0.114", + "tauri-utils", + "thiserror 2.0.18", + "time", + "url", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-macros" +version = "2.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b6a1bd2861ff0c8766b1d38b32a6a410f6dc6532d4ef534c47cfb2236092f59" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.114", + "tauri-codegen", + "tauri-utils", +] + +[[package]] +name = "tauri-plugin" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "692a77abd8b8773e107a42ec0e05b767b8d2b7ece76ab36c6c3947e34df9f53f" +dependencies = [ + "anyhow", + "glob", + "plist", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri-utils", + "toml 0.9.11+spec-1.1.0", + "walkdir", +] + +[[package]] +name = "tauri-plugin-dialog" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9204b425d9be8d12aa60c2a83a289cf7d1caae40f57f336ed1155b3a5c0e359b" +dependencies = [ + "log", + "raw-window-handle", + "rfd", + "serde", + "serde_json", + "tauri", + "tauri-plugin", + "tauri-plugin-fs", + "thiserror 2.0.18", + "url", +] + +[[package]] +name = "tauri-plugin-fs" +version = "2.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed390cc669f937afeb8b28032ce837bac8ea023d975a2e207375ec05afaf1804" +dependencies = [ + "anyhow", + "dunce", + "glob", + "percent-encoding", + "schemars 0.8.22", + "serde", + "serde_json", + "serde_repr", + "tauri", + "tauri-plugin", + "tauri-utils", + "thiserror 2.0.18", + "toml 0.9.11+spec-1.1.0", + "url", +] + +[[package]] +name = "tauri-plugin-log" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7545bd67f070a4500432c826e2e0682146a1d6712aee22a2786490156b574d93" +dependencies = [ + "android_logger", + "byte-unit", + "fern", + "log", + "objc2", + "objc2-foundation", + "serde", + "serde_json", + "serde_repr", + "swift-rs", + "tauri", + "tauri-plugin", + "thiserror 2.0.18", + "time", +] + +[[package]] +name = "tauri-plugin-opener" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc624469b06f59f5a29f874bbc61a2ed737c0f9c23ef09855a292c389c42e83f" +dependencies = [ + "dunce", + "glob", + "objc2-app-kit", + "objc2-foundation", + "open", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri", + "tauri-plugin", + "thiserror 2.0.18", + "url", + "windows", + "zbus", +] + +[[package]] +name = "tauri-plugin-updater" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fe8e9bebd88fc222938ffdfbdcfa0307081423bd01e3252fc337d8bde81fc61" +dependencies = [ + "base64 0.22.1", + "dirs", + "flate2", + "futures-util", + "http", + "infer", + "log", + "minisign-verify", + "osakit", + "percent-encoding", + "reqwest 0.13.2", + "rustls", + "semver", + "serde", + "serde_json", + "tar", + "tauri", + "tauri-plugin", + "tempfile", + "thiserror 2.0.18", + "time", + "tokio", + "url", + "windows-sys 0.60.2", + "zip 4.6.1", +] + +[[package]] +name = "tauri-runtime" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b885ffeac82b00f1f6fd292b6e5aabfa7435d537cef57d11e38a489956535651" +dependencies = [ + "cookie", + "dpi", + "gtk", + "http", + "jni", + "objc2", + "objc2-ui-kit", + "objc2-web-kit", + "raw-window-handle", + "serde", + "serde_json", + "tauri-utils", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webview2-com", + "windows", +] + +[[package]] +name = "tauri-runtime-wry" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5204682391625e867d16584fedc83fc292fb998814c9f7918605c789cd876314" +dependencies = [ + "gtk", + "http", + "jni", + "log", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "once_cell", + "percent-encoding", + "raw-window-handle", + "softbuffer", + "tao", + "tauri-runtime", + "tauri-utils", + "url", + "webkit2gtk", + "webview2-com", + "windows", + "wry", +] + +[[package]] +name = "tauri-utils" +version = "2.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcd169fccdff05eff2c1033210b9b94acd07a47e6fa9a3431cf09cfd4f01c87e" +dependencies = [ + "anyhow", + "brotli", + "cargo_metadata", + "ctor", + "dunce", + "glob", + "html5ever", + "http", + "infer", + "json-patch", + "kuchikiki", + "log", + "memchr", + "phf 0.11.3", + "proc-macro2", + "quote", + "regex", + "schemars 0.8.22", + "semver", + "serde", + "serde-untagged", + "serde_json", + "serde_with", + "swift-rs", + "thiserror 2.0.18", + "toml 0.9.11+spec-1.1.0", + "url", + "urlpattern", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-winres" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0" +dependencies = [ + "dunce", + "embed-resource", + "toml 0.9.11+spec-1.1.0", +] + +[[package]] +name = "tempfile" +version = "3.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" +dependencies = [ + "fastrand", + "getrandom 0.3.4", + "once_cell", + "rustix 1.1.3", + "windows-sys 0.61.2", +] + +[[package]] +name = "tendril" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" +dependencies = [ + "futf", + "mac", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl 2.0.18", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "time" +version = "0.3.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" +dependencies = [ + "deranged", + "itoa", + "libc", + "num-conv", + "num_threads", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" + +[[package]] +name = "time-macros" +version = "0.2.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.49.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" +dependencies = [ + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-macros" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" +dependencies = [ + "serde", +] + +[[package]] +name = "toml" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" +dependencies = [ + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "toml" +version = "0.9.11+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46" +dependencies = [ + "indexmap 2.13.0", + "serde_core", + "serde_spanned 1.0.4", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 0.7.14", +] + +[[package]] +name = "toml_datetime" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_datetime" +version = "0.7.5+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.13.0", + "toml_datetime 0.6.3", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" +dependencies = [ + "indexmap 2.13.0", + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.23.10+spec-1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" +dependencies = [ + "indexmap 2.13.0", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "winnow 0.7.14", +] + +[[package]] +name = "toml_parser" +version = "1.0.6+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" +dependencies = [ + "winnow 0.7.14", +] + +[[package]] +name = "toml_writer" +version = "1.0.6+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +dependencies = [ + "bitflags 2.10.0", + "bytes", + "futures-util", + "http", + "http-body", + "iri-string", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "tray-icon" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c" +dependencies = [ + "crossbeam-channel", + "dirs", + "libappindicator", + "muda", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "once_cell", + "png 0.17.16", + "serde", + "thiserror 2.0.18", + "windows-sys 0.60.2", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typeid" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" + +[[package]] +name = "typenum" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" + +[[package]] +name = "uds_windows" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" +dependencies = [ + "memoffset", + "tempfile", + "winapi", +] + +[[package]] +name = "unic-char-property" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" +dependencies = [ + "unic-char-range", +] + +[[package]] +name = "unic-char-range" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" + +[[package]] +name = "unic-common" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" + +[[package]] +name = "unic-ucd-ident" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" +dependencies = [ + "unic-char-property", + "unic-char-range", + "unic-ucd-version", +] + +[[package]] +name = "unic-ucd-version" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" +dependencies = [ + "unic-common", +] + +[[package]] +name = "unicode-ident" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" + +[[package]] +name = "unicode-segmentation" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + +[[package]] +name = "unsafe-libyaml" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", + "serde_derive", +] + +[[package]] +name = "urlpattern" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" +dependencies = [ + "regex", + "serde", + "unic-ucd-ident", + "url", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8-ranges" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba" + +[[package]] +name = "utf8-width" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "uuid" +version = "1.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f" +dependencies = [ + "getrandom 0.3.4", + "js-sys", + "serde_core", + "wasm-bindgen", +] + +[[package]] +name = "value-bag" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version-compare" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "vswhom" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" +dependencies = [ + "libc", + "vswhom-sys", +] + +[[package]] +name = "vswhom-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.2+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.108" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.58" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f" +dependencies = [ + "cfg-if", + "futures-util", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.108" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.108" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.114", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.108" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-streams" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "wasm-streams" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "web-sys" +version = "0.3.85" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webkit2gtk" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793" +dependencies = [ + "bitflags 1.3.2", + "cairo-rs", + "gdk", + "gdk-sys", + "gio", + "gio-sys", + "glib", + "glib-sys", + "gobject-sys", + "gtk", + "gtk-sys", + "javascriptcore-rs", + "libc", + "once_cell", + "soup3", + "webkit2gtk-sys", +] + +[[package]] +name = "webkit2gtk-sys" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5" +dependencies = [ + "bitflags 1.3.2", + "cairo-sys-rs", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "gtk-sys", + "javascriptcore-rs-sys", + "libc", + "pkg-config", + "soup3-sys", + "system-deps", +] + +[[package]] +name = "webpki-root-certs" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "webview2-com" +version = "0.38.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a" +dependencies = [ + "webview2-com-macros", + "webview2-com-sys", + "windows", + "windows-core 0.61.2", + "windows-implement", + "windows-interface", +] + +[[package]] +name = "webview2-com-macros" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "webview2-com-sys" +version = "0.38.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c" +dependencies = [ + "thiserror 2.0.18", + "windows", + "windows-core 0.61.2", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "window-vibrancy" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" +dependencies = [ + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "raw-window-handle", + "windows-sys 0.59.0", + "windows-version", +] + +[[package]] +name = "windows" +version = "0.61.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" +dependencies = [ + "windows-collections", + "windows-core 0.61.2", + "windows-future", + "windows-link 0.1.3", + "windows-numerics", +] + +[[package]] +name = "windows-collections" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" +dependencies = [ + "windows-core 0.61.2", +] + +[[package]] +name = "windows-core" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.1.3", + "windows-result 0.3.4", + "windows-strings 0.4.2", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", +] + +[[package]] +name = "windows-future" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" +dependencies = [ + "windows-core 0.61.2", + "windows-link 0.1.3", + "windows-threading", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "windows-link" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-numerics" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" +dependencies = [ + "windows-core 0.61.2", + "windows-link 0.1.3", +] + +[[package]] +name = "windows-registry" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" +dependencies = [ + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", +] + +[[package]] +name = "windows-result" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-strings" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link 0.2.1", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows-threading" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-version" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.7.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.55.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" +dependencies = [ + "cfg-if", + "windows-sys 0.59.0", +] + +[[package]] +name = "wit-bindgen" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" + +[[package]] +name = "writeable" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" + +[[package]] +name = "wry" +version = "0.54.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ed1a195b0375491dd15a7066a10251be217ce743cf4bbbbdcf5391d6473bee0" +dependencies = [ + "base64 0.22.1", + "block2", + "cookie", + "crossbeam-channel", + "dirs", + "dpi", + "dunce", + "gdkx11", + "gtk", + "html5ever", + "http", + "javascriptcore-rs", + "jni", + "kuchikiki", + "libc", + "ndk", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "objc2-ui-kit", + "objc2-web-kit", + "once_cell", + "percent-encoding", + "raw-window-handle", + "sha2", + "soup3", + "tao-macros", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webkit2gtk-sys", + "webview2-com", + "windows", + "windows-core 0.61.2", + "windows-version", + "x11-dl", +] + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "x11" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" +dependencies = [ + "libc", + "pkg-config", +] + +[[package]] +name = "x11-dl" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" +dependencies = [ + "libc", + "once_cell", + "pkg-config", +] + +[[package]] +name = "xattr" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" +dependencies = [ + "libc", + "rustix 1.1.3", +] + +[[package]] +name = "yaml-rust2" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8902160c4e6f2fb145dbe9d6760a75e3c9522d8bf796ed7047c85919ac7115f8" +dependencies = [ + "arraydeque", + "encoding_rs", + "hashlink", +] + +[[package]] +name = "yoke" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure", +] + +[[package]] +name = "zbus" +version = "5.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfeff997a0aaa3eb20c4652baf788d2dfa6d2839a0ead0b3ff69ce2f9c4bdd1" +dependencies = [ + "async-broadcast", + "async-executor", + "async-io", + "async-lock", + "async-process", + "async-recursion", + "async-task", + "async-trait", + "blocking", + "enumflags2", + "event-listener", + "futures-core", + "futures-lite", + "hex", + "libc", + "ordered-stream", + "rustix 1.1.3", + "serde", + "serde_repr", + "tracing", + "uds_windows", + "uuid", + "windows-sys 0.61.2", + "winnow 0.7.14", + "zbus_macros", + "zbus_names", + "zvariant", +] + +[[package]] +name = "zbus_macros" +version = "5.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bbd5a90dbe8feee5b13def448427ae314ccd26a49cac47905cafefb9ff846f1" +dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.114", + "zbus_names", + "zvariant", + "zvariant_utils", +] + +[[package]] +name = "zbus_names" +version = "4.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f" +dependencies = [ + "serde", + "winnow 0.7.14", + "zvariant", +] + +[[package]] +name = "zerocopy" +version = "0.8.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "zerofrom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" + +[[package]] +name = "zerotrie" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.114", +] + +[[package]] +name = "zip" +version = "2.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50" +dependencies = [ + "arbitrary", + "crc32fast", + "crossbeam-utils", + "displaydoc", + "flate2", + "indexmap 2.13.0", + "memchr", + "thiserror 2.0.18", + "zopfli", +] + +[[package]] +name = "zip" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1" +dependencies = [ + "arbitrary", + "crc32fast", + "indexmap 2.13.0", + "memchr", +] + +[[package]] +name = "zmij" +version = "1.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445" + +[[package]] +name = "zopfli" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" +dependencies = [ + "bumpalo", + "crc32fast", + "log", + "simd-adler32", +] + +[[package]] +name = "zstd" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" +dependencies = [ + "zstd-safe", +] + +[[package]] +name = "zstd-safe" +version = "7.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" +dependencies = [ + "zstd-sys", +] + +[[package]] +name = "zstd-sys" +version = "2.0.16+zstd.1.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" +dependencies = [ + "cc", + "pkg-config", +] + +[[package]] +name = "zvariant" +version = "5.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68b64ef4f40c7951337ddc7023dd03528a57a3ce3408ee9da5e948bd29b232c4" +dependencies = [ + "endi", + "enumflags2", + "serde", + "winnow 0.7.14", + "zvariant_derive", + "zvariant_utils", +] + +[[package]] +name = "zvariant_derive" +version = "5.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "484d5d975eb7afb52cc6b929c13d3719a20ad650fea4120e6310de3fc55e415c" +dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.114", + "zvariant_utils", +] + +[[package]] +name = "zvariant_utils" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9" +dependencies = [ + "proc-macro2", + "quote", + "serde", + "syn 2.0.114", + "winnow 0.7.14", +] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml new file mode 100644 index 0000000..912556e --- /dev/null +++ b/src-tauri/Cargo.toml @@ -0,0 +1,40 @@ +[package] +name = "helixnotes" +version = "1.0.0" +description = "Local-first markdown note-taking app" +authors = ["HelixNotes"] +license = "AGPL-3.0-or-later" +edition = "2021" +rust-version = "1.77.2" + +[lib] +name = "app_lib" +crate-type = ["staticlib", "cdylib", "rlib"] + +[build-dependencies] +tauri-build = { version = "2", features = [] } + +[dependencies] +tauri = { version = "2", features = ["protocol-asset", "tray-icon", "image-png"] } +tauri-plugin-log = "2" +tauri-plugin-dialog = "2" +tauri-plugin-fs = "2" +tauri-plugin-opener = "2" +tauri-plugin-updater = "2" +serde = { version = "1", features = ["derive"] } +serde_json = "1" +serde_yaml = "0.9" +log = "0.4" +notify = "8" +walkdir = "2" +chrono = { version = "0.4", features = ["serde"] } +uuid = { version = "1", features = ["v4"] } +tantivy = "0.22" +gray_matter = "0.2" +tokio = { version = "1", features = ["full"] } +dirs = "6" +regex = "1" +zip = { version = "2", default-features = false, features = ["deflate"] } +reqwest = { version = "0.12", features = ["json", "stream"] } +futures = "0.3" +rayon = "1" diff --git a/src-tauri/build.rs b/src-tauri/build.rs new file mode 100644 index 0000000..795b9b7 --- /dev/null +++ b/src-tauri/build.rs @@ -0,0 +1,3 @@ +fn main() { + tauri_build::build() +} diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json new file mode 100644 index 0000000..faf9423 --- /dev/null +++ b/src-tauri/capabilities/default.json @@ -0,0 +1,50 @@ +{ + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "HelixNotes default capabilities", + "windows": ["main"], + "permissions": [ + "core:default", + "core:window:default", + "core:window:allow-start-dragging", + "core:window:allow-minimize", + "core:window:allow-toggle-maximize", + "core:window:allow-close", + "core:window:allow-is-maximized", + "core:window:allow-set-decorations", + "dialog:default", + "dialog:allow-open", + "dialog:allow-save", + "dialog:allow-message", + "dialog:allow-ask", + "dialog:allow-confirm", + "fs:default", + "fs:allow-read", + "fs:allow-write", + "fs:allow-exists", + "fs:allow-mkdir", + "fs:allow-remove", + "fs:allow-rename", + "fs:allow-copy-file", + "fs:allow-stat", + "fs:allow-read-dir", + "fs:allow-read-file", + "fs:allow-write-file", + "fs:allow-watch", + "opener:default", + { + "identifier": "opener:allow-open-path", + "allow": [{ "path": "/**" }] + }, + { + "identifier": "opener:allow-open-url", + "allow": [ + { "url": "https://**" }, + { "url": "http://**" }, + { "url": "mailto:*" } + ] + }, + "opener:allow-reveal-item-in-dir", + "updater:default" + ] +} diff --git a/src-tauri/icons/128x128.png b/src-tauri/icons/128x128.png new file mode 100644 index 0000000000000000000000000000000000000000..71bd6abef0a29300f76ba170da90f92719725f5f GIT binary patch literal 4065 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 TX;PoY00000NkvXXu0mjfk7&RN literal 0 HcmV?d00001 diff --git a/src-tauri/icons/128x128@2x.png b/src-tauri/icons/128x128@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..e6e95a7d7170ff9cfbcbb870d695791f198b33a9 GIT binary patch literal 8548 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%0AcW5y?}A{^K?(Um`KBV(B^r-AIZL+8 zzYWG-3!Gg7j$sV!hr2h=srGckh+Ba7Y%ThTfxWH2T>_qAz*{9-=N%mB99F9GTGkLyaK=u zzswSF3nT0gcQdf6v~-zQr(bG52(@^9+1nuaxpvb8oWfjlnj%eWcRrn3J^ZeR28UUCBR#KO-%ejwf<7!6WIz;-(o?DS_y^4PlG4GxBpRqIbY1Hu+Fpa@`3ilHoE$PD2e5=-+7pI!!j)v# vO@IavQo$Iz0Y<(tn%L=`zbWbnmLdNSO-GWXQR;8a00000NkvXXu0mjf{pO+G literal 0 HcmV?d00001 diff --git a/src-tauri/icons/Square150x150Logo.png b/src-tauri/icons/Square150x150Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..2914ba5c2f1ddd0c4b54cdad9b31a2574a9de268 GIT binary patch literal 4087 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 iFA1KTm78ZdSA#AcdF{(p@ew0)r literal 0 HcmV?d00001 diff --git a/src-tauri/icons/Square284x284Logo.png b/src-tauri/icons/Square284x284Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..440a267494b647812c3e3e8dc4caf4848dc626b0 GIT binary patch literal 9647 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 OffQs^q${M11OE@YQgG7% literal 0 HcmV?d00001 diff --git a/src-tauri/icons/Square30x30Logo.png b/src-tauri/icons/Square30x30Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..254804e3aba7fd7569fbeeeb829c6e8e369b42ad GIT binary patch literal 793 zcmV+!1LpjRP)a*bYehznjV2|D504bI+Wa z5t3w@rkelW&<^55r~y2HgR{v3f&#N31C^f1A=5OY@kxmvbUb}uuEg)4Y@b$DlJBE@cLqfCrV5`o3=OvY4i+7J}Z{%&qj8=Bhk_S~dT@p*@RGfSOM~ zypI(k9a)3|Ac#)^HQ5HExv8*GQ0}}O+<7@^SM6TgBv`up+y@WTgb_qh=8<OD>+4Ty~*IyZ1ZzCqiaQl_TY3Cw(>?RF`J z1;(ktwo)DMMtdQPd#z>s__@c_%sN^_VS$VLt=H)HFXD<7*QSl)N?X;*9cgK0i(i{z z2K<_#53Te@I&eSqZzg20tjE;}voG(KQm9enp@ zR~kMjkb!K21qM~6XL1PSW453gW~)4b7l{vg5$7~$PiCv>7bfdUx5P^~+LJI@}3qSm@A;6cN_RcckAH+gM z0Rg&y_{;4mNd|$KKuU<`IzAuv7To;{GIRgxkuatzt*&`lx|t)yMx>PHhtvb5a~P~TMCXQ>a~mo zHkD|y5EY5VHuYhxg}n~lim-BA`+1l z+-O+THGr>&IA3b(vV?`V<(XHLH4}7mwmHJ;J`i&-eYAuhy#l|UaEuGd|>;!AC z8QC?MLLr%@QKHyUH3FK zq;SRq?jq+~w}F{awAc)w^1WlOJ(MA4}`#yI{H` zR%4Hf@%=|Gz8@$%5DDkc+>YzR88N=g3$zSX9>2^0zGYF}tZWUj2<0 zUmP>OlloKRKY=NuxJk`VPb2Pk_qYoh?G$StgtT{J<%-7FhuVW`zJqr2yee@WUHM{2 zkO7}hF#87x5FL3PJ4*pAf(IR3s6^fWOjp}#*o`b_ld-6Wej(QUm8=yNAzanznDsGs z6Sq+X-AxLdP+%*DK=^wy(PZb@wsaM0$mv)5@MupS3Q##9tSX&Kx1*!)tu&bC2w3Tz zvOn$yLN>HnU>>SRVXc9gyUEF-Xw)nUZPBEyn7C{98Wv~y>pCmW}ToOCxniR1pW z-qI7g<=#gKs~}Oh#EkPRe+3nohVq4u5KQ9!>kAfGG`=okjgiz}OGW{>-HioW+9`XH zlJO`-EI8X=*H;p@zU>;QYt(=DRY>j@^I=&$%oraH+kGk?|K{kYcS_{GEJ1RsRP(}M z#v`|EY*LZuJ+JBgd2WZ#wAgmbAZrP0J22SyB4fmlNZOwZZ(VA!2Hx}+he`wv0`q6B zcUMTzPoQH-SQwtIF0RW=6M_ymtD;bfC8Y_+R|FN0h=@*dpU2OV$z9U|XE{WzgL5-& zMnrRn+WRwDUThb2gGOA;b0vdF$t^`&4-fjOOvP6#qsFG?+O<@)C|0#O)EoN45BN@am-B<(}M^9N-{S@$OB%^b$*B=}YWz8fZ)M z3!#IX-+@Mi!pzo15~sw_Ee>Q$$9>?l*}`t;vlLl`6>8r1UIC0$&}$c?>E@gt0k-72 zdt6d3kCqn9vvT^iu89E#yR||r;2Ply%UNW0tOHC+INfR7;Ipj#I=-XK4+|6lrDb6y z^~fWtIUZYQyll-cS3Js{+z&>fVwj3bq&0PZpQt0sWOZ3q$;-?t7sH65)N)gNdeBTN zTW@9rLLMp;qs_Et*MaHXrg8zA`xv!=6@tePMz+s z#7NFC#UVdT8H`=tP}Gn#7*p$Nw>lU#^t87`8XH0jEyBmy(q}4~`5!A#4jS*W45Cbq zGejyJHDoOAMJcU6GJXv6MiEKYpyg;h=cAJ2q?6P3AnJvV?H_;7oGHky?Iz06mt)F> zk$oq|b+mKdd2XxUzkggx1j!m3h#ToyixN+XrwxY63MRg%zD_DhAsMTZc>1~(efqQW zY+xy-Go=iLewN9xyMMX>KO_072fvM#Fz)dUG3@Mp)_66add^O7qNVfGms3%zC8FHb zsaGVU`g%%j(TXBL_(c2Z22qA3?{k~^TFgT;Q%b9y`>+^iR-@6!5|UgCprORgM^|VI z`~_s>)-AV?IWwBf;ETNyf{W$VcNlGNg>0WdvcmjKFqb|`pn15^hU0g=#v0wAX+8Wk z&vCTgW7F4|5m#)YkG!Uc8ThuM+Sf?E8<)G?=izhSA&4FE7T&{!FC4APJJFXUXU+L_ zg3p=Jl-^^QBLfy*rC$yt}S`!}y&dquZ+ z;}4#9iGa&3ZZA$~*(sNg7*)e(`r>m8E=Dq?busSTlrTpI*MI4SAiKQ}s6(hlDChM; zw8uW^1(2znN?{cMn>$mXhPy?0pBdX``}lt z!F!7UM`h+HyzI9K`{Ja0kW2gcoz1v38a2a$WC6fk3lcKMByLQx%}!8GZKH}f_`>L_ z)ov5tE5k0SIbSPb)8;iiMcx?MzLCLNDPCgZu&kxd^;;lrQ&Ciu%V^u4E@=O1Y}wCc zq*tTOKa0<2QQ8)+iO-m6?TwTAdfs=n@m+RQPqDUFYSYqIdvBriCSMQdJ`2VP9=$DFXgxVj9K&k zbC5E{H|u%)bTfS0=dJiSF7HCWZ`|_Z zg{X0e@K*iImhYj!Z#}rh@hX|Peh`K_02tMVQ~&%tnikn!7MB$b?vs$fiV!LlZ4O>A zp#M*8xJ}wEO!$LFj#-5({x4%0nao%3h~t_MP9ByA0nnxo7~+1T(*`gIKTvyT0SKqH zacrLi!itg0i55kipq2l36SGaFPW5zBSP`Cw4VHttU9mDw+n@YSkLcC*~$J~(#oS{N)Y6>w;Fx&Ec# zF)1=17oZyqyZ*!CZ0ATcXDqL5R!hBh8^68B`$r&0KWNZ*52_@@^*Zl%B|@BIFdA#0 zK4Q1>M_UJ%*v`sCs>haBQzITTqF{zW)3+T>vc^La?I2Lc)*A=j_w1m2)c=F8tD0_0!IMM7ckHzVnY-Sz5i=D}EqFpb z2#jYZre5?Fj=MID6=In9ZU8sJsNI-rU_*#x@*A1u%`5xYpnnH6e=ef8kBC=RM6>%W zDhH;2EW|2SnvY1&R43BK=uxh`=>VUCIl4;hT zE@d_xKQQoxN$D!>zYL_sN%vm4May?xrpU99aHxBq_~O2MQlsB1Jb#>@Au2CJ717A)UYh~^$)hdrT_nhsK2`|e0?$%)EfWi@$s`!wL%KBVYc zjpP4YiS5~8FQKLrvypy3P70G;$)$zZ`cq@2CDrWgJ-Oe+jB#`x`+E`{CF7O~8?2`{ ziaPl%pRxYb+H7$TC6$pk@w|2Scj`lFtvV)m|!`jl?h-x6V_T^?w1nAH3cD5@%8 zj)@wv&>Et8bO&Kb7Ur*CvKKz4=zb>T1@cx|0!$565~08`Ma}$v7U_nN^-v*V3eptS zqhNd@P75G{orBlU2Gw=zmUQ2e&QIRHXFpf})npMzD*D~MAsrX-wp>W3({`zkav*6t z|IpXvTsCl7e3BtBq7GPW1dIgO!_oT8*wDzanVk}-7m3`#l|LN!wXJp8NpvjUe5O4U zd1E9Mg)5l!tC3iGE}ibf)5V}Tb=$89LoKpyZ_2o!@>TY;?O(z={yt|>HQ8l5y&pRW zPza$Is*lz~i&R?5erLL*KRaKBXh=FDSbM?EdQiY`Iht;K{@NU3vtSgwB|@IZC-rGL zQEO%B2=8L8Uf!><%f7p;Q-T4L=(mXaOqrgoEfuXvxtxM+48Ix0$jFJ=YrZ79lA1UdLthP_*|K$CS4OnR2hT7mkvd~k=Fkfg2 zW3Yr<=M{1y+nFUVZn^v^ZiEv@D$$`npFaDfYU}K15hY6jWAST~2hlc-q{y}mk5|BZ720GvDcZ8BANQL74 z7m44GQh|@{cl$~&CC)A^usq4w_4_-Gxfl{r;SVR;8sJiq|6}E*N7)JmFllf3*HHbU zoGQn0RH8`Gm3NZdK?}`QKij;t2nsQzDSP%Sd}*6b>WSk!IJSgfbw&%KLlU_m zbM;LO5pfMPI?xty2+x>bLk&2>A?ZE=54<2@%Nm}V9;jijgm#WRD`{;cU_4mGzW3}i zQxOEXABcu{h_Zh<@gd`GonP=(t{0G?cb6I7hr|k-hAXTQNuR7 z+nudn9(Y7Dc{pOo;l${zaAsax#LwZSJO^fD0R;9TS+r;unWRbOw1!fLi{)CeLTKlH z!>zGWVg}4uKxc0r2nG3OHw7xh9taJnoIEif{r@JxqyL6yP&tt$XJl)6Ne?^W3r7uC z{>KUvLVG&8`CpS9LQ60-q`np0HVbBRqC@jEnxLZm(C2 zb@^6uZR0XAJ7Xb#au=xu1DH2ii53CoEh*nswBU$?lt5b(-K8DbKsdB{zXc_tR%ZCV9(0_|Re_}E5d+h*h4Mb}_W(8pC7Q#)j zwpd`xoD~1*)f?$plaiEDshhprbP`~85=ROnmKiuef7NGJke;-KJY!=!)SKQ)uV1G5 z1ZZKA5HW<-SXKk8Vdi7U=~KVLs-=S+gOUcy19;ILpy9akp3Y$#~;>vyGKs3MxErf?)Zu&nqg_KLDLYCfufOb=o81Nf~ zRzm?LnuQlx0e2de{69uXJ!UGT>bw69RwkPfcSGi}fm71fE&9Ky0?3+>vlB8?(Yv8d zj4%HX00YM;Ye_t);hp=}j#jh{Vw%vLrY-iL3jSTcO6nAzorf_4ICJ@^J0 z4BYp>F^m@%t_GM){MI*-iwiOM{6jWf^suWNoF?w0US*m9siz-UbTPD|Owf_(t7 z0AW~0b-~2{?7*;NoTMN+gU)YBx_VdoDCzLKWNJ8@%Mqc{hQ(V(SrUm?GmZ0 zhDEu;5b1ENK(`4h?(2{vD!n9o#ZoX5NHq8v@!F_Al2@?3h$8w{HKlx5RVJt8YN)(C zmR;huq7wlvqRFp+6#VxmG2n)>`*+mVGNETe01Jh)yuyggm{P7?`J>d_30tcD5Ecj~^P)4)ml4VozEMJAJ@cU+^(zmM56#?a9=O zq0bI!@s9g8%{>cP9#g+XC!<7&y~`GumCpg;^?jZSa7}=7^YoHCJY2zf={BQy;a?u4 z8z74v^r^s|@3t8B;I92_On_hKxgP5Luo5hJZ?=^$P+IxDX z8i>D9>57MbahhJ^BY(%iQNH*WBs@r0}pSVw82G8}ruV-mF z8ldU2x+~Yq;e9kF{!1$sRt@>7PQN`&{pNwyH~faMd$wU`z(vC`Y41d0nYs> zkV0XJ=8*ohHSYL&T5S6toa&jlj-E%=58>7{zts zjPPoXiU9AYCzY2=)~h)7AM(qE+lG~IqKMTp(F6cOrOzA|C358}0QW*7WZ}W!$f~Qy zoDU2*Mm{qz;Wn_EnDpm*2u`-&V5SR{b^oNvzx9-fNX594V3W|9au@{$Ujq&+;dFmz ziHMW1Yzc({g;gQP68Y{ZeX_kBx&=TuVzPm5U~SLudJEkcj`f6&nQ_7>H%>#C?U-y|4dA~{py8gs-rix{w9vx^~LrN-e-HD0hTRw@zqUK5HRSx+VLQ;;kI#~x|Ahl7fDqvGgSRj{A(zDOm z8Vtn<(Zp!WCq}zCiIyMqFCF_v8nrU@n1&eye8q-5?x0xIMC7041emBn(Pru+&9DI; zTqEJL#=Xcw3?Vg{WD*%{RjQ5McdFa4LQKS)X@Y&z*V|)TK9VPn==doBj`;mcaT1_6S zJ{=5{ck0gwfDXL9{Wi9;J((+R_LYG!?N?Kq|D{Gs;>P(z+ZM=OPGc9n(#)uvcwR0{ zQp@Y}`Nx%x^_mHGZ+Yy$!ar9vE&);;e`7`|xYSF|2ULOMqkHzZI>WZYaZ$I1!R6YZ z!twE}vCKmzVcATozEO1Y@~?}KaM47WoxkNb-TL(AE$`vshonhBdEb-h+}&I8TZ-*B zqZ13?$ohu`>AlhtNr2wVP4972LFr_Y9KXMDL@kMuSH>YMHpBE^fk^S5-W|Ai&m}LK z8G2l7z3V0Cms0df@;Yd;T8}Pg#=O$_bIrUl7y|?jxeUpq0LtJ+C=f-B?+aX!PqY3m z7j^cgZhY&p0kM!6!oX3Ilc`n z?E$tT=2=J%WLGV{sng{0Y3`gop0u{Ty*IBF3l5w&iY*Oc=k@W}u&48ydnqPjR-3Ub zGOzJx6#dM!GBsiLLW?JY_~iA9Czf!B5gxUpu6?xs-5c#!rsqPWA!8Vs>_-QN<(mFK zI=lKwNFH|tEIhGnt~>#ZYx~Urj$z-Pn=|d*>K7Wj%v*5QLv)R!ASB*&#&otP<$Brq z1paCLeZlPK!4~6JZF@J%+`>2I6q>Zb>!avnJ^_o*P4op5Mc-T%Xv`ZU%D)RmJ|+~B z)x;QxAO2+J9EwNJd}GmP4g{geTi5Pwf*Yc*Z>+G`_16pp9IH|&BNm))Px%qXPr=1m zsP#t`7r2IIE1^c*#zG80d~QNRG7kb_uROd3DBfEI=9@j<)-f0gw+3=SA~qtS0RW*kJ7x{b4aHJT;l3blL3M zLxul%OvowAcoDkmchBwB9++D4k;0;Ojw#_!&z_(%zsD=3?~Z;BS}TW%!tM8(^k<9? zUN^WKF3cEi0IDwVdvLPHO@t+_t%m?!Ou%&;#P3jvKH}Fbvd5-=lBJHn1x7?}Ez1Wa za_a;;_!&!-BLAi`07f@%yMXfWG>@X;C}m2g<(VXa&+*4cEmUFxw3wH70U^}|f-!<` zvP-KwkRea1=qxM+Az6J^5b>eW)1CwEKmXv^kb=$q$cMxT^yA1ZkavHPz7erh10#L` z#kGIH#a|RFp1%oKJEyI*jr93?i6Uj?V40487gfCJ2IUcO1u&hPD-JaAbs-w_!e=i! z=p=}hSc{3x&=HX$fPsidW2SOKq{vt)2BkRtBi7`?;R5+E5<-gzBW*BAeoj;Xg(!-k ze^D4uy9l5~#FK^CVD(SRK*4B89H zVswiHw6`3bVyFj&CQ3$#NQ&5MEj{MsXK0wtw?LshNxM@ky1dkC;V*<=X%j*dU9_N+ zYWjgknP!If3%el+%Vx$fcX4oglgo7bc10J%jt&_pz}#H|foN5V42(TJP47u1-?s zj1HN9c(8$d;qyZtp{E_E@9Sfh7O{JYM`U2bb-whn!^k3eQU7@Xq>W4(v4Zz ze$r@>05a%WXn6N~vWG#)t`>~sk`2VnRr6K?c#~2Jxt?tKFi`8)Rs{w;4@tS`YIOig z(a+H|T!F_4S3V51`n6!`XpW1=pg2}za;WApVFWGh6@8P}=jM>TG28tuC~g2ob+k0% zXHryg)k5Q5PqQl(N^BNn)>rT0rNlhLZbSjqObR9LdU=1dkR2(`k!OaEbo1Vv0R3RQ z5{Kope)#9Jp2Klf7#iX{|M$9|0Yt=< zNsADuCjMU3i`34`uM!f&E=*g%G9GH@DtQuUCax?nOGTW^&8rO?#vk=i;~oeoOHa2G z7X>aMW`;#gEjhodK9)LlL3jhwcspF(g>hI1ormQ&oK_qsEe1OGhgTcmNE$pmMChKG zsweGMEof9i*ju{l6|Po4aopb%u&@lrqy=&RujD_6J|w`>q=JA~u@{y%Is5({moE^u z8!EG_8I#JYGNBGgB?YIB&ijk;NG+5%I7Yxj z3b6*0`H%wTcb&qkcl`P*40tEfAzWE4UdcJ)B#kes@C;fMMiaT2Z4*vo=3Wc#zOuDt z)RtR2XFAH8yN1COu3t{dG`YTdGIR1be+v-R19luk_=&os^>*V?ALMUrhYoV;?=CS3 z^mfOR06Bkl-0)0G+cjaw2*CYqsGP#fitOTfJonjWe!>Q`>Q`CWSjZi>am$VgraL`S zT-^KNAJIW{~1=XaU(n$1QbEUz@IRWTq2yjv;D(0L(=WJ@D zfYJOgR~un;H8F0P-

^?}r+i?&RdO2|h~l=m6bONoOsd5^Ji`qg|MeIULHDgwZT_ z13XgitbEI8j&5R8j)}lNyVVgWV#wiWLiye2No@k^;mMw#j&r191Dr4J#n9u1c(q7n z+6(1Uy6WoZsUPcO7}ls*F5S_|aEGKw0*}g+-;iuViD|=r+?hYXfY%J^V|`4+8a9ni zL8Iw*4e$j&((i%nIS=viTj-g1{R8~&^0I4I<2Rb%<-F_5VH|GPz-~e7Hfp}vV0K3? zDZyt-4gSRL+}l4dS^UEK$U4|;D_J)=lsyeRB8yhnyZ;Vlv_>2{TMnyxy;%Ns+KbXM zGzACPmU!c}VN?PUHuC}4jYaEZgH<^Rqu&0&XbduB>H?lJ_# zvR55FBwd2hAAsFrs_aLj+w0pXE_PqJC}#lQ3+73+j_=B;DNj6_ETt;pq^eMQ_R6T8 zx$A{AnevbyXfBQ6BYIpBi=!N_x%4SR}g~D+mAUkyS4!-)&ui_OyIRp^PiI;;I4#giWGGQ zYR#eV-hB{kq6iS(aW+o#c)kSjHORylBp8l?k4X5U-Aclq$-AN+(r{PcLbYFKN4 zB`;MkG=Hl;Uq#gqWv$}_6T(|RJC%vfc_1SuYN5HS8pg7!gQaZ%3XG)zx~S#VlLg51 zDN4<@ZKv$;SlH(Aeg(21wqBtTP&hh`F95{m?Z+IN&F+ff0~RU$Qd)8qtIf9Ye;^Bx zgz!};0@lUaBvJ&dSAYev7BRsa3Xm3S3ln5mfOxY}^YfC)amLg4(95MO-FQchh~hL& zr650rBDKWnJ`rE|CS@8J`E?@1Xs`>`QBf2SJvGtQv(o{qc z9LYAeY?_Ovsnq;&n_G7V0LXDBu<^ZYd_Kufzu%<0cjS4OGM5se=-$O4!?heL7OJwW5R`xL)Dn-A9IASKvrDyPrfo7nMa5H(?d zi&wfyaoAZ?Ja!K_(b&etE9M@ma6}~~CL@sJACQ4}+~+2$JG^*dDsR5-;9u86q#;=_ zFPX0H;i&F%)OI+>nZSyoG`wDeUyit_KH|dT(OJ2CHgmGgRkNvxig2(KA=t?g4NRv* zV!V~|vMh3)@$~k4X*_qIqQaR$PlU-QN5$G~&NX$ivM7z|Ng6KqAoUHcVY|GiF;zG; zO=aijZ~1jy7K@<${v*y`>g4$8wxDsVi!)eOFq8DOY506kmh0*nX4n495%<$zG9?P~ zQvzBl<1F zTGKOsb#VQrxqIC+b!+qTlE`%?@SxvIbBl>fs8wN6e(KmM(K=vSc3gOXXSg}X2Jujl zh|rJsD~D`XKwgctM&yXAiXuf_tTiGkO*aLaUphY{s?GReZF@NA6Pwc^!kh?ud#6iZ=@fwm^tBu;qeIEUbkf(-{#7w6dE&~%Lr4RxQrrbJEQV0wo#5TB&FWii5%XeMS z?&*VM*`oM4>=t11>;}*48*8 zfi{Wo2xKL2Nl`epcW3dH(HM#Af?h5=ZuIv%eJZCm_oh7tKe2M+*7o{=XFe4TOx*E;=v&_I!4#rtJaNkBf&%fE40% zs+8N`-&On|+Wx5GyjpgyP)Gj+m^rTAB?tAo!ukU{i>n6j7$QzYnDcyty3t4o@MsDv z2MaVnoNd29m7_dTFEcUjn8DNsRki5Q+bcc2UnspFcI?=ph)3#PCZ;d|x#2NZ_T4aj z;@p0?`d0$hnB!N{u>O^@v#<4T2nf$(QsFBm&^Qx=rb(f$yz=r*JqmzT%2K`+rk9-V z6h|pUx|I~7)Leg(3n|4L0AhRD*&>ktHQS+NL(`QdiV*rlAB3Z#D%u)FqC97|Bgu$F zJg*>Sf!U5EBLWH(V2as}Bq>uAz+tu*NlLl}P>r^lX16fEz|Ca06`wyu_3d_=ntg`Z z&&jq^knhB9v(VD&=gV7d^!P%C*^gkc7;SOIvK+Q-$i-%TY+53@e65*-M`{TMwS;Y_ zrmAe)lE<^pWFh+H%>F=#!^i8naJgwrz7NJwaaJtLVe6LJL%tUXmMzXE-I2ns_bZWd z*u}SD5kgS7*Avb25!Z|J$FU(BH{*pzR zQHAMG$%b6)HsgM8!^D|i;2zMGhGXfX#Kc*;Xynw-ZnN-oL2Lm>gJI%ix~*}w%bILU zO8e0;Oq?Ene9RkIHr|3=^lR*~jH;&BN}ur~;5kDJgj=7n?1<>6Oi5|*E9e6u} zQQO|U<>iATwPU`90q0*-^ot!v8Phb$mFpfJczg%}Ax+ZM?Bn9)hwM32LtSGh^X9k^ zLg36u#W5*`|J8L2Ywt%ZrZG1XzNIet@Z&l@KGjGdprI(>^J~;LbaMP(jU20JK+{G) ze~N|JUUtSuD0uyM^yG9&X7x68`LwX;wnNnFpbHxFuztctI-EK0{QvgVJq)>mSi?13wP4+Aa#L1oEVCM8mbaXxfptI`{ zxicI?BA6MNDo+2%)Y9tbp~pvatA9uYGYiwivDwrCk*TdC$e;gulUDD*2xjEs)o3wA z97PdqS`*Hh;BjQ~wgm@7FlR<8o7at;gN>V?W}Nhe1Me3;N7I)5c^+pSmUDiG!iq_g`G-nKwrD$sbhiw}?0#Y_!UMex&&-(}`>N8k2j zw-rZP%8<5|HErzPS3Rb>*kBCpR@=7Z4O>2OXQVPGF9TH(c-sOTJvnmDr0J5QC&M|I zstD%fW#CFrjoP*_-^JFSC`h5eUQDFRPzkGO}63lg{Z1&H?$I&lNEWg%Wk2$CH!R9cr2${01bm5ee3as5*}OP zp{dzt=wo!l5K@4y@jlDfluiYR`v1mn;emn>)nWrf*} zBqO?%6#`&;*_ldUp2_|s6P5dS6+a#RGa91YY;TeY0q;R1eNfW^Ir}DLyGNhoIQbHomq}00VnqFTK(hRmw)uj%7qMC z)K`Jnsr5IPIz7bC`@a=sz>>wGw^w>}h4m9{{1M<0Qm#KxUOXTn9I~EsU}tfarm&KU za|hKSJegYT}oHX1Ac2U_Va(5jCm;{X5v07*qoM6N<$ Ef`BG=$N&HU literal 0 HcmV?d00001 diff --git a/src-tauri/icons/Square89x89Logo.png b/src-tauri/icons/Square89x89Logo.png new file mode 100644 index 0000000000000000000000000000000000000000..fd7b80e29c0e916a8bb496f65b97b15504631493 GIT binary patch literal 2863 zcmV+~3()k5P)u_Q|f8!QJEHpUA<#@1qsB;^oO z1&M78VM$mFJR}rVc|&^Ud|ZSlfW%t$ODiF zAR&}%M+gUiF%T?Z>>I|!c^SN^Kax&dr=n5Ne?~Sw25STj2PPsz#OdcWdmb_ zARHkQuh-R7oK=0gn#K=4+gJ+0ssZd&YbbVLCj>+F;g`!kQ+$S!Mh`sKlBt))OAPdo z(sN=Q0`R7ozzc_8E58<~aX`WLKhvU!KUXK@D~8Ou)7vp=!nsw{Rf+Ww@?GW!^MGvjSmyp z-xfL^$1g;{Z|hzuKQ#BiJQ4Rj-ME7@R*!fO4u%PEDtqV86>Z)-eMElXxt2_WEPsLc z7#s>$Bqrbf*2_C>(>r{|WW6k2LR{cbStUsNllP99o;)?tIEDB)91aMCyWXiO{}15Z zlLh-D;sS>Y28I`BH!zut5CUf+=TmILn7E_%<;o5Y07BsLNIMjZ2;z?d0DIzz&-G*a z(W@XzkF--Uh|Q9P96n|k-VzsBGcs0L=?)IT$|CJaEF%Q3;EZ8?q#cQ680a<*VrwJq zNKC`9mIJgh(tgA;1mto8k|OO$Y{QZ{mglPSGJ;ktSvu2XlCbsmEUddZ6)DLEI9)O> zUm3;ejvp{!b!cWcCo2J4H)f$QKM5wIgzLj@e0^~U?HyJ)U9x6&yt^AFb8CY(!I$ zO-2a^?q9Ruje1kMIU6O#;kn`4)}`aFP1yn4amMiQ{cB({Nnx?OpdBqQzI9_3k{9T~ z{;0e=H!OD5Tqh|}k1e-nhQ;neXe#o$n^RS_UwvZ=^!m_TGUz#q3X@fxQ@kcEB%6WI zROFOogR1tNF{C6Z@A>{nPBthSp1es*QRk;xG!@z5R39RZJ3L6egooi4D@vLLi~Sc9^s6ir1QusYD#+83~$#2K7U88*8M>1HE# zR~3MBb>k}M47;lekZv}@Ht2%WB|}nhjfPVe3|!N0#tAIJWaQ%$J!m^KuxOjUtK+zI zWdwpIdwpSk5-Lj7B?l`?SE4X~GS?-DaH(emeFKY&*V=v+$4*{RWhWS<+crN^t)&4X zptH-49?K|FQw%Vt8NsHW{?RT*$>mL_kA97($QOeADIaw>!+WJA7Cl!_`cj1j*&ykX(hr=mj z+~NCF-+6Z~)|X_=Yzskn?~}`mK0xzx6Y;?AB5-9+}ym9%s#IM!(leO)=o!ssbN@yL(5`)Yd<* z?YLtCHoI%d1qLD@@?sDXj@4g*&F-4nXEI8-@27?HA`XK=!hJux5eW&i*;@OM3&+Bo z%?k%nB{BfG-7?<)=Vds&db&ByH{xK7VfU_8$S}|LaHmVg`^USNEJv({s1q3gt`EEM z(TN@idA3Iu<|m}kwv{L$pfREu0vZ1$OEJ6$qPwpe_U>>Ellu;JDWf2T(cQ7dwOZX$MV_k9uTT&E2m{;S(3 z;sAj1ZL=A;Xe25{4wRE9OEa%JTE?h(|t zSkT#J5A$96NAr~t&KdUZxoOebG@IRpF^31TSC2g3X+!;~z>Bcc%w1K{NeqcA^hjUi zVc2$N0Du4Rd(CH!n*Vn0tttpu{Fj@ZfTDug9^TzMibj<=iN?0sUe6grQ9&|RW-VUd zUb;COKd&lKWhWRk6*(s>0Tl|0|71Zh86{+-8!>1PZgpdN{2sKskdbbL(I_dZ`KZ{I zi|kBoUpCNG@WvGB{^A{K0oYuWmS9G7f+6-Aozw2d!`aeDMKp#REwq}e|=HiOE2GD9uB!K!tD|G-m7*)30*4v zREwq}w|7`EGN!y|*0(5+ixU6qfynXarML*xx_N(~voAAuQI=k!v ziyVQ;;py$87d5Zd(7fQ#YICC7GKS)t)BHXNWkINKvEcpV-C-^M`|83FbUKb3S0($6 zScXU4I8=85Uw^Cpdwfe)aA-10*s?Jb#cR@#I`u|sckc*JpS5aQADo>z=Z(}6H@Yqk z;q+N6T<#cpBlZ6sj>*3mkE0oEoHHPL>ziT%8sPwo{t}#J3nD;;IaY9Fyr8j`71W{d0#aRMQM%Ja6+B*&oL{Qaz2cBuzNZ^lwuopmdzeE=vt`TrV2>$x?R9Ounl~9&dH|g>Qun7!h z05&k-76QuykOa_*P_7*r*f@Yu2C{(gjR4MpM3cv6JA3r#FN3Zh_#ft#Es*r^ifsS@ N002ovPDHLkV1h!%JhlJ; literal 0 HcmV?d00001 diff --git a/src-tauri/icons/StoreLogo.png b/src-tauri/icons/StoreLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..f040adaa07e47cde86d3e8bfe28fcd119f0aaf74 GIT binary patch literal 1596 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 KCkScNcmD%!Wqj@c literal 0 HcmV?d00001 diff --git a/src-tauri/icons/icon.ico b/src-tauri/icons/icon.ico new file mode 100644 index 0000000000000000000000000000000000000000..09eaf9e6348783b59c5b2a6cc2e7eefc66b4f97a GIT binary patch literal 4286 zcmc&&%}*0i5P!y~M?HDwX#DsexcUchu#0G7MBPGT^yo)8sWH)r7`=gs2T)HW25VS$ zw^qSJ2{kPTFecJ3#Xy7t2a`49{I+bfeWj(_kKNbI?!Nct&2Qe!ypO362l&_3CGZpz z$Ama8ggC*(O`@9#?RMe5{fZtwcS=`#9~-KYV%lP&76~#^W;panyP}+|h5x3f=dhuM zMwr)X5wD)UmZ>VkiT?gWZaqraiq=6~S*K~Y4n|mc<|DSP3+w4Om)f;_F<6|~& za`;|Ve)`*t*Fs2t%a1Bh%}c#Dm*Z{PEqU`GfgT8;^9=w;${b)m;6&p~_=&JJ14?GFOLat}$0IKpr>TA}Y9>#@6 zfQ>RWc=ib6>wf9L_x>5=d?obK6FTVEdY^aL7Z!3o8QZM~;$b%?(`=9JHrNC*SQh75 foa?!<@Vz0#QB#P6L;N=Zh?_cEhIVmG#sv0%I0PSa literal 0 HcmV?d00001 diff --git a/src-tauri/icons/icon.png b/src-tauri/icons/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..683f3c6e9a14c512ac155ce67294124ad44148b0 GIT binary patch literal 17840 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 E0gL5)2mk;8 literal 0 HcmV?d00001 diff --git a/src-tauri/src/ai.rs b/src-tauri/src/ai.rs new file mode 100644 index 0000000..a88b54f --- /dev/null +++ b/src-tauri/src/ai.rs @@ -0,0 +1,405 @@ +use reqwest::Client; +use serde_json::json; +use tauri::{AppHandle, Emitter}; + +use crate::types::AiStreamEvent; + +const ANTHROPIC_API_URL: &str = "https://api.anthropic.com/v1/messages"; +const OPENAI_API_URL: &str = "https://api.openai.com/v1/chat/completions"; + +pub fn ai_request( + app: AppHandle, + provider: String, + api_key: String, + model: String, + system_prompt: String, + user_message: String, + request_id: String, +) { + std::thread::spawn(move || { + let rt = tokio::runtime::Runtime::new().unwrap(); + rt.block_on(async { + let result = match provider.as_str() { + "openai" => { + stream_openai( + &app, + &api_key, + &model, + &system_prompt, + &user_message, + &request_id, + ) + .await + } + _ => { + stream_anthropic( + &app, + &api_key, + &model, + &system_prompt, + &user_message, + &request_id, + ) + .await + } + }; + if let Err(e) = result { + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "error".to_string(), + text: None, + error: Some(e), + }, + ); + } + }); + }); +} + +async fn stream_anthropic( + app: &AppHandle, + api_key: &str, + model: &str, + system_prompt: &str, + user_message: &str, + _request_id: &str, +) -> Result<(), String> { + let client = Client::new(); + + let body = json!({ + "model": model, + "max_tokens": 4096, + "stream": true, + "system": system_prompt, + "messages": [ + { + "role": "user", + "content": user_message + } + ] + }); + + let response = client + .post(ANTHROPIC_API_URL) + .header("x-api-key", api_key) + .header("anthropic-version", "2023-06-01") + .header("content-type", "application/json") + .json(&body) + .send() + .await + .map_err(|e| format!("Request failed: {}", e))?; + + if !response.status().is_success() { + let status = response.status(); + let body_text = response.text().await.unwrap_or_default(); + return Err(format!("API error {}: {}", status, body_text)); + } + + // Parse SSE stream + use futures::StreamExt; + let mut stream = response.bytes_stream(); + let mut buffer = String::new(); + + while let Some(chunk) = stream.next().await { + let chunk = chunk.map_err(|e| format!("Stream error: {}", e))?; + buffer.push_str(&String::from_utf8_lossy(&chunk)); + + // Process complete SSE events from buffer + while let Some(event_end) = buffer.find("\n\n") { + let event_str = buffer[..event_end].to_string(); + buffer = buffer[event_end + 2..].to_string(); + + for line in event_str.lines() { + if let Some(data) = line.strip_prefix("data: ") { + if data == "[DONE]" { + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "done".to_string(), + text: None, + error: None, + }, + ); + return Ok(()); + } + + if let Ok(parsed) = serde_json::from_str::(data) { + let event_type = parsed["type"].as_str().unwrap_or(""); + + match event_type { + "content_block_delta" => { + if let Some(text) = parsed["delta"]["text"].as_str() { + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "text".to_string(), + text: Some(text.to_string()), + error: None, + }, + ); + } + } + "message_stop" => { + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "done".to_string(), + text: None, + error: None, + }, + ); + return Ok(()); + } + "error" => { + let msg = parsed["error"]["message"] + .as_str() + .unwrap_or("Unknown API error"); + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "error".to_string(), + text: None, + error: Some(msg.to_string()), + }, + ); + return Err(msg.to_string()); + } + _ => {} + } + } + } + } + } + } + + // Stream ended — send done + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "done".to_string(), + text: None, + error: None, + }, + ); + + Ok(()) +} + +async fn stream_openai( + app: &AppHandle, + api_key: &str, + model: &str, + system_prompt: &str, + user_message: &str, + _request_id: &str, +) -> Result<(), String> { + let client = Client::new(); + + let is_gpt5 = model.starts_with("gpt-5"); + let token_key = if is_gpt5 { + "max_completion_tokens" + } else { + "max_tokens" + }; + + let mut body = json!({ + "model": model, + "stream": true, + token_key: 4096, + "messages": [ + { + "role": "system", + "content": system_prompt + }, + { + "role": "user", + "content": user_message + } + ] + }); + + // GPT-5 models don't support temperature + if !is_gpt5 { + body["temperature"] = json!(0.7); + } + + let response = client + .post(OPENAI_API_URL) + .header("Authorization", format!("Bearer {}", api_key)) + .header("content-type", "application/json") + .json(&body) + .send() + .await + .map_err(|e| format!("Request failed: {}", e))?; + + if !response.status().is_success() { + let status = response.status(); + let body_text = response.text().await.unwrap_or_default(); + return Err(format!("API error {}: {}", status, body_text)); + } + + use futures::StreamExt; + let mut stream = response.bytes_stream(); + let mut buffer = String::new(); + + while let Some(chunk) = stream.next().await { + let chunk = chunk.map_err(|e| format!("Stream error: {}", e))?; + buffer.push_str(&String::from_utf8_lossy(&chunk)); + + while let Some(event_end) = buffer.find("\n\n") { + let event_str = buffer[..event_end].to_string(); + buffer = buffer[event_end + 2..].to_string(); + + for line in event_str.lines() { + if let Some(data) = line.strip_prefix("data: ") { + if data == "[DONE]" { + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "done".to_string(), + text: None, + error: None, + }, + ); + return Ok(()); + } + + if let Ok(parsed) = serde_json::from_str::(data) { + // OpenAI streaming: choices[0].delta.content + if let Some(content) = parsed["choices"][0]["delta"]["content"].as_str() { + if !content.is_empty() { + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "text".to_string(), + text: Some(content.to_string()), + error: None, + }, + ); + } + } + + // Check finish_reason + if let Some(reason) = parsed["choices"][0]["finish_reason"].as_str() { + if reason == "stop" || reason == "length" { + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "done".to_string(), + text: None, + error: None, + }, + ); + return Ok(()); + } + } + + // Check for error in stream + if let Some(err) = parsed["error"]["message"].as_str() { + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "error".to_string(), + text: None, + error: Some(err.to_string()), + }, + ); + return Err(err.to_string()); + } + } + } + } + } + } + + let _ = app.emit( + "ai-stream", + AiStreamEvent { + event_type: "done".to_string(), + text: None, + error: None, + }, + ); + + Ok(()) +} + +pub async fn test_connection(provider: &str, api_key: &str, model: &str) -> Result { + match provider { + "openai" => test_openai(api_key, model).await, + _ => test_anthropic(api_key, model).await, + } +} + +async fn test_anthropic(api_key: &str, model: &str) -> Result { + let client = Client::new(); + + let body = json!({ + "model": model, + "max_tokens": 10, + "messages": [ + { + "role": "user", + "content": "Hi" + } + ] + }); + + let response = client + .post(ANTHROPIC_API_URL) + .header("x-api-key", api_key) + .header("anthropic-version", "2023-06-01") + .header("content-type", "application/json") + .json(&body) + .send() + .await + .map_err(|e| format!("Connection failed: {}", e))?; + + if response.status().is_success() { + Ok("Connection successful".to_string()) + } else { + let status = response.status(); + let body_text = response.text().await.unwrap_or_default(); + Err(format!("API error {}: {}", status, body_text)) + } +} + +async fn test_openai(api_key: &str, model: &str) -> Result { + let client = Client::new(); + + let is_gpt5 = model.starts_with("gpt-5"); + let token_key = if is_gpt5 { + "max_completion_tokens" + } else { + "max_tokens" + }; + + let body = json!({ + "model": model, + token_key: 10, + "messages": [ + { + "role": "user", + "content": "Hi" + } + ] + }); + + let response = client + .post(OPENAI_API_URL) + .header("Authorization", format!("Bearer {}", api_key)) + .header("content-type", "application/json") + .json(&body) + .send() + .await + .map_err(|e| format!("Connection failed: {}", e))?; + + if response.status().is_success() { + Ok("Connection successful".to_string()) + } else { + let status = response.status(); + let body_text = response.text().await.unwrap_or_default(); + Err(format!("API error {}: {}", status, body_text)) + } +} diff --git a/src-tauri/src/backup.rs b/src-tauri/src/backup.rs new file mode 100644 index 0000000..ec37110 --- /dev/null +++ b/src-tauri/src/backup.rs @@ -0,0 +1,269 @@ +use std::fs; +use std::io::{Read, Write}; +use std::path::{Path, PathBuf}; + +use chrono::Utc; +use walkdir::WalkDir; +use zip::write::SimpleFileOptions; +use zip::ZipArchive; + +use crate::types::BackupEntry; + +/// Returns the default backup directory (~/.config/helixnotes/backups/) +pub fn default_backup_dir() -> Result { + let config_dir = dirs::config_dir().ok_or("Cannot find config directory")?; + let dir = config_dir.join("helixnotes").join("backups"); + if !dir.exists() { + fs::create_dir_all(&dir).map_err(|e| e.to_string())?; + } + Ok(dir) +} + +/// Returns the effective backup directory (custom or default) +pub fn get_backup_dir(custom: &Option) -> Result { + match custom { + Some(p) if !p.is_empty() => { + let dir = PathBuf::from(p); + if !dir.exists() { + fs::create_dir_all(&dir).map_err(|e| e.to_string())?; + } + Ok(dir) + } + _ => default_backup_dir(), + } +} + +/// Create a backup zip of the vault +pub fn create_backup( + vault_path: &str, + backup_dir: &Path, + include_attachments: bool, +) -> Result { + let vault = Path::new(vault_path); + if !vault.is_dir() { + return Err("Vault directory does not exist".to_string()); + } + + if !backup_dir.exists() { + fs::create_dir_all(backup_dir).map_err(|e| e.to_string())?; + } + + let now = Utc::now(); + let timestamp = now.format("%Y-%m-%dT%H-%M-%S").to_string(); + let filename = format!("helixnotes-backup-{}.zip", timestamp); + let backup_path = backup_dir.join(&filename); + + let file = fs::File::create(&backup_path) + .map_err(|e| format!("Failed to create backup file: {}", e))?; + let mut zip = zip::ZipWriter::new(file); + let options = SimpleFileOptions::default() + .compression_method(zip::CompressionMethod::Deflated) + .compression_level(Some(6)); + + let helixnotes_dir = vault.join(".helixnotes"); + let attachments_dir = helixnotes_dir.join("attachments"); + + for entry in WalkDir::new(vault).into_iter().filter_map(|e| e.ok()) { + let path = entry.path(); + + // Handle .helixnotes/ directory + if path.starts_with(&helixnotes_dir) { + if include_attachments { + // Include attachments/ but skip everything else + if !path.starts_with(&attachments_dir) && path != helixnotes_dir { + continue; + } + if path == helixnotes_dir { + continue; + } + } else { + // Skip .helixnotes entirely + continue; + } + } + + // Skip hidden files/directories (except .helixnotes which we handle above) + if path != vault { + if let Some(name) = path.file_name() { + let name_str = name.to_string_lossy(); + if name_str.starts_with('.') && name_str != ".helixnotes" { + continue; + } + } + } + + let relative = path.strip_prefix(vault).map_err(|e| e.to_string())?; + + if path.is_dir() { + let dir_name = format!("{}/", relative.to_string_lossy()); + if dir_name != "/" { + zip.add_directory(&dir_name, options) + .map_err(|e| e.to_string())?; + } + } else { + let name = relative.to_string_lossy().to_string(); + zip.start_file(&name, options).map_err(|e| e.to_string())?; + let mut f = fs::File::open(path).map_err(|e| e.to_string())?; + let mut buffer = Vec::new(); + f.read_to_end(&mut buffer).map_err(|e| e.to_string())?; + zip.write_all(&buffer).map_err(|e| e.to_string())?; + } + } + + zip.finish().map_err(|e| e.to_string())?; + + let meta = fs::metadata(&backup_path).map_err(|e| e.to_string())?; + + Ok(BackupEntry { + filename: filename.clone(), + path: backup_path.to_string_lossy().to_string(), + size: meta.len(), + created: now.to_rfc3339(), + }) +} + +/// List all backups in the backup directory +pub fn list_backups(backup_dir: &Path) -> Result, String> { + if !backup_dir.exists() { + return Ok(Vec::new()); + } + + let mut entries: Vec = Vec::new(); + + for entry in fs::read_dir(backup_dir).map_err(|e| e.to_string())? { + let entry = entry.map_err(|e| e.to_string())?; + let path = entry.path(); + + if path.extension().map_or(false, |ext| ext == "zip") { + let filename = path + .file_name() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + let meta = fs::metadata(&path).map_err(|e| e.to_string())?; + + // Parse timestamp from filename: helixnotes-backup-YYYY-MM-DDTHH-MM-SS.zip + let created = if let Some(ts) = filename + .strip_prefix("helixnotes-backup-") + .and_then(|s| s.strip_suffix(".zip")) + { + // ts = "2026-02-08T18-09-15" → "2026-02-08T18:09:15Z" + if let Some(t_pos) = ts.find('T') { + let date_part = &ts[..t_pos]; + let time_part = &ts[t_pos + 1..]; + let time_colons = time_part.replace('-', ":"); + format!("{}T{}Z", date_part, time_colons) + } else { + meta.modified() + .map(|t| { + let dt: chrono::DateTime = t.into(); + dt.to_rfc3339() + }) + .unwrap_or_default() + } + } else { + meta.modified() + .map(|t| { + let dt: chrono::DateTime = t.into(); + dt.to_rfc3339() + }) + .unwrap_or_default() + }; + + entries.push(BackupEntry { + filename, + path: path.to_string_lossy().to_string(), + size: meta.len(), + created, + }); + } + } + + // Sort newest first + entries.sort_by(|a, b| b.created.cmp(&a.created)); + Ok(entries) +} + +/// Restore a backup by extracting the zip over the vault directory +pub fn restore_backup(vault_path: &str, backup_path: &str) -> Result<(), String> { + let vault = Path::new(vault_path); + let backup = Path::new(backup_path); + + if !backup.exists() { + return Err("Backup file does not exist".to_string()); + } + + let file = fs::File::open(backup).map_err(|e| format!("Failed to open backup: {}", e))?; + let mut archive = + ZipArchive::new(file).map_err(|e| format!("Invalid backup archive: {}", e))?; + + // Clear existing notes (but keep .helixnotes/ internals except attachments) + for entry in fs::read_dir(vault).map_err(|e| e.to_string())? { + let entry = entry.map_err(|e| e.to_string())?; + let path = entry.path(); + let name = path + .file_name() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + + // Keep hidden dirs (.helixnotes) — we'll handle attachments separately + if name.starts_with('.') { + continue; + } + + if path.is_dir() { + fs::remove_dir_all(&path).map_err(|e| e.to_string())?; + } else { + fs::remove_file(&path).map_err(|e| e.to_string())?; + } + } + + // Clear existing attachments so backup's attachments replace them + let attachments_dir = vault.join(".helixnotes").join("attachments"); + if attachments_dir.exists() { + fs::remove_dir_all(&attachments_dir).map_err(|e| e.to_string())?; + } + + // Extract archive + for i in 0..archive.len() { + let mut file = archive.by_index(i).map_err(|e| e.to_string())?; + let outpath = vault.join(file.mangled_name()); + + if file.is_dir() { + fs::create_dir_all(&outpath).map_err(|e| e.to_string())?; + } else { + if let Some(parent) = outpath.parent() { + fs::create_dir_all(parent).map_err(|e| e.to_string())?; + } + let mut outfile = fs::File::create(&outpath).map_err(|e| e.to_string())?; + std::io::copy(&mut file, &mut outfile).map_err(|e| e.to_string())?; + } + } + + Ok(()) +} + +/// Delete a single backup file +pub fn delete_backup(backup_path: &str) -> Result<(), String> { + let path = Path::new(backup_path); + if path.exists() { + fs::remove_file(path).map_err(|e| e.to_string())?; + } + Ok(()) +} + +/// Remove old backups keeping only the newest `max_count` +pub fn cleanup_old_backups(backup_dir: &Path, max_count: u32) -> Result<(), String> { + let mut backups = list_backups(backup_dir)?; + + // backups are already sorted newest-first + if backups.len() as u32 > max_count { + let to_remove = backups.split_off(max_count as usize); + for entry in to_remove { + delete_backup(&entry.path)?; + } + } + + Ok(()) +} diff --git a/src-tauri/src/commands.rs b/src-tauri/src/commands.rs new file mode 100644 index 0000000..1142a3f --- /dev/null +++ b/src-tauri/src/commands.rs @@ -0,0 +1,1341 @@ +use crate::search::SearchIndex; +use crate::state::AppState; +use crate::types::*; +use crate::vault::{operations, watcher}; +use tauri::{AppHandle, Manager, State}; + +// ── Vault Management ── + +#[tauri::command] +pub fn open_vault(app: AppHandle, state: State<'_, AppState>, path: String) -> Result<(), String> { + operations::ensure_vault_structure(&path)?; + + // Initialize search index + let search = SearchIndex::new(&path)?; + search.rebuild(&path)?; + *state.search_index.lock().map_err(|e| e.to_string())? = Some(search); + + // Start file watcher + let w = watcher::start_watcher(app.clone(), path.clone())?; + *state.watcher.lock().map_err(|e| e.to_string())? = Some(w); + + // Update config + let mut config = state.config.lock().map_err(|e| e.to_string())?; + if !config.vaults.iter().any(|v| v.path == path) { + let name = std::path::Path::new(&path) + .file_name() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + config.vaults.push(VaultConfig { + path: path.clone(), + name, + }); + } + config.active_vault = Some(path); + save_app_config(&config)?; + + Ok(()) +} + +#[tauri::command] +pub fn get_app_config(state: State<'_, AppState>) -> Result { + let config = state.config.lock().map_err(|e| e.to_string())?; + Ok(config.clone()) +} + +#[tauri::command] +pub fn set_theme(state: State<'_, AppState>, theme: String) -> Result<(), String> { + let mut config = state.config.lock().map_err(|e| e.to_string())?; + config.theme = theme; + save_app_config(&config)?; + Ok(()) +} + +#[tauri::command] +pub fn set_accent_color(state: State<'_, AppState>, color: String) -> Result<(), String> { + let mut config = state.config.lock().map_err(|e| e.to_string())?; + config.accent_color = Some(color); + save_app_config(&config)?; + Ok(()) +} + +#[tauri::command] +pub fn set_font_size(state: State<'_, AppState>, size: u32) -> Result<(), String> { + let mut config = state.config.lock().map_err(|e| e.to_string())?; + config.font_size = Some(size); + save_app_config(&config)?; + Ok(()) +} + +#[tauri::command] +pub fn set_font_family(state: State<'_, AppState>, family: String) -> Result<(), String> { + let mut config = state.config.lock().map_err(|e| e.to_string())?; + config.font_family = Some(family); + save_app_config(&config)?; + Ok(()) +} + +// ── Notebooks ── + +#[tauri::command] +pub fn get_notebooks(state: State<'_, AppState>) -> Result, String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::scan_notebooks(vault_path) +} + +#[tauri::command] +pub fn create_notebook( + state: State<'_, AppState>, + parent_relative: Option, + name: String, +) -> Result { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::create_notebook(vault_path, parent_relative.as_deref(), &name) +} + +#[tauri::command] +pub fn rename_notebook(path: String, new_name: String) -> Result { + operations::rename_notebook(&path, &new_name) +} + +#[tauri::command] +pub fn delete_notebook(state: State<'_, AppState>, path: String) -> Result<(), String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::delete_notebook(vault_path, &path) +} + +// ── Notes ── + +#[tauri::command] +pub fn get_notes( + state: State<'_, AppState>, + notebook_path: Option, +) -> Result, String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::scan_notes(vault_path, notebook_path.as_deref()) +} + +#[tauri::command] +pub fn read_note(path: String) -> Result { + operations::read_note(&path) +} + +#[tauri::command] +pub fn save_note( + state: State<'_, AppState>, + path: String, + meta: NoteMeta, + body: String, +) -> Result<(), String> { + // Snapshot current content before overwriting (if file exists) + let config = state.config.lock().map_err(|e| e.to_string())?; + if let Some(vault_path) = &config.active_vault { + if std::path::Path::new(&path).exists() { + if let Ok(old_raw) = std::fs::read_to_string(&path) { + let max_versions = config.max_versions_per_note; + let note_id = meta.id.clone(); + let vp = vault_path.clone(); + // Snapshot in background so save isn't slowed down + std::thread::spawn(move || { + crate::history::maybe_snapshot(&vp, ¬e_id, &old_raw, max_versions); + }); + } + } + } + drop(config); + + operations::save_note(&path, &meta, &body)?; + Ok(()) +} + +#[tauri::command] +pub fn create_note( + state: State<'_, AppState>, + notebook_relative: Option, + title: String, +) -> Result { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + let entry = operations::create_note(vault_path, notebook_relative.as_deref(), &title)?; + + // Index new note + if let Ok(search_guard) = state.search_index.lock() { + if let Some(ref search) = *search_guard { + let _ = search.index_note(&entry.path); + } + } + + Ok(entry) +} + +#[tauri::command] +pub fn rename_note(path: String, new_title: String) -> Result { + operations::rename_note(&path, &new_title) +} + +#[tauri::command] +pub fn delete_note(state: State<'_, AppState>, path: String) -> Result<(), String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::delete_note(vault_path, &path)?; + + // Remove from index + if let Ok(search_guard) = state.search_index.lock() { + if let Some(ref search) = *search_guard { + let _ = search.remove_note(&path); + } + } + + Ok(()) +} + +#[tauri::command] +pub fn move_note(note_path: String, dest_notebook: String) -> Result { + operations::move_note(¬e_path, &dest_notebook) +} + +// ── Tags ── + +#[tauri::command] +pub fn get_all_tags(state: State<'_, AppState>) -> Result, String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::get_all_tags(vault_path) +} + +// ── Wiki-links ── + +#[tauri::command] +pub fn get_all_note_titles(state: State<'_, AppState>) -> Result, String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + let vault = std::path::Path::new(vault_path); + let mut entries = Vec::new(); + + for entry in walkdir::WalkDir::new(vault) + .into_iter() + .filter_map(|e| e.ok()) + { + let path = entry.path(); + if !path.is_file() { + continue; + } + let path_str = path.to_string_lossy(); + if path_str.contains("/.helixnotes/") || path_str.contains("/.trash/") { + continue; + } + if path.extension().and_then(|e| e.to_str()) != Some("md") { + continue; + } + // Read frontmatter title, fallback to filename + let title = if let Ok(raw) = std::fs::read_to_string(path) { + crate::vault::frontmatter::extract_title(&raw).unwrap_or_else(|| { + path.file_stem() + .unwrap_or_default() + .to_string_lossy() + .to_string() + }) + } else { + path.file_stem() + .unwrap_or_default() + .to_string_lossy() + .to_string() + }; + + entries.push(NoteTitleEntry { + title, + path: path_str.to_string(), + }); + } + + Ok(entries) +} + +// ── Search ── + +#[tauri::command] +pub fn search_notes( + state: State<'_, AppState>, + query: String, + limit: Option, +) -> Result, String> { + let search_guard = state.search_index.lock().map_err(|e| e.to_string())?; + let search = search_guard + .as_ref() + .ok_or("Search index not initialized")?; + search.search(&query, limit.unwrap_or(20)) +} + +#[tauri::command] +pub fn reindex(state: State<'_, AppState>) -> Result<(), String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + let search_guard = state.search_index.lock().map_err(|e| e.to_string())?; + let search = search_guard + .as_ref() + .ok_or("Search index not initialized")?; + search.rebuild(vault_path) +} + +// ── Trash ── + +#[tauri::command] +pub fn get_trash(state: State<'_, AppState>) -> Result, String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::get_trash_notes(vault_path) +} + +#[tauri::command] +pub fn restore_note( + state: State<'_, AppState>, + trash_path: String, + dest_notebook: Option, +) -> Result { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::restore_note(vault_path, &trash_path, dest_notebook.as_deref()) +} + +#[tauri::command] +pub fn permanent_delete(path: String) -> Result<(), String> { + operations::permanent_delete(&path) +} + +#[tauri::command] +pub fn empty_trash(state: State<'_, AppState>) -> Result<(), String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::empty_trash(vault_path) +} + +// ── Vault State ── + +#[tauri::command] +pub fn load_vault_state(state: State<'_, AppState>) -> Result { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::load_vault_state(vault_path) +} + +#[tauri::command] +pub fn save_vault_state(state: State<'_, AppState>, vault_state: VaultState) -> Result<(), String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::save_vault_state(vault_path, &vault_state) +} + +// ── Attachments ── + +#[tauri::command] +pub fn save_image( + state: State<'_, AppState>, + name: String, + data: Vec, +) -> Result { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::save_image(vault_path, &name, &data) +} + +#[tauri::command] +pub fn save_attachment( + state: State<'_, AppState>, + name: String, + data: Vec, +) -> Result { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::save_attachment(vault_path, &name, &data) +} + +// ── Notebook Icons ── + +#[tauri::command] +pub fn get_notebook_icons( + state: State<'_, AppState>, +) -> Result, String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::load_notebook_icons(vault_path) +} + +#[tauri::command] +pub fn set_notebook_icon( + state: State<'_, AppState>, + notebook_relative: String, + icon_relative: Option, +) -> Result<(), String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::set_notebook_icon(vault_path, ¬ebook_relative, icon_relative.as_deref()) +} + +// ── General Settings ── + +#[tauri::command] +pub fn set_general_settings( + state: State<'_, AppState>, + compact_notes: bool, + time_format: String, + gpu_acceleration: bool, + autostart: bool, + pdf_preview: bool, + pdf_height: u32, + title_mode: String, + hide_title_in_body: bool, + default_view_mode: bool, + show_tray_icon: bool, + enable_wiki_links: bool, +) -> Result<(), String> { + let mut config = state.config.lock().map_err(|e| e.to_string())?; + config.compact_notes = compact_notes; + config.time_format = time_format; + config.gpu_acceleration = gpu_acceleration; + config.autostart = autostart; + config.pdf_preview = pdf_preview; + config.pdf_height = pdf_height; + config.title_mode = title_mode; + config.hide_title_in_body = hide_title_in_body; + config.default_view_mode = default_view_mode; + config.show_tray_icon = show_tray_icon; + config.enable_wiki_links = enable_wiki_links; + save_app_config(&config)?; + Ok(()) +} + +// ── Quick Access ── + +#[tauri::command] +pub fn get_quick_access(state: State<'_, AppState>) -> Result, String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::get_quick_access_notes(vault_path) +} + +#[tauri::command] +pub fn add_quick_access(state: State<'_, AppState>, note_relative: String) -> Result<(), String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::add_quick_access(vault_path, ¬e_relative) +} + +#[tauri::command] +pub fn remove_quick_access( + state: State<'_, AppState>, + note_relative: String, +) -> Result<(), String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + operations::remove_quick_access(vault_path, ¬e_relative) +} + +#[tauri::command] +pub fn get_vault_stats(state: State<'_, AppState>) -> Result { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + + let mut total_notes: u64 = 0; + let mut total_attachments: u64 = 0; + let mut notes_size: u64 = 0; + let mut attachments_size: u64 = 0; + + for entry in walkdir::WalkDir::new(vault_path) + .into_iter() + .filter_map(|e| e.ok()) + { + let path = entry.path(); + if !path.is_file() { + continue; + } + let path_str = path.to_string_lossy(); + // Include .helixnotes/attachments, skip everything else in .helixnotes + if path_str.contains("/.helixnotes/") && !path_str.contains("/.helixnotes/attachments/") { + continue; + } + // Skip trash + if path_str.contains("/.trash/") { + continue; + } + let size = entry.metadata().map(|m| m.len()).unwrap_or(0); + let ext = path.extension().and_then(|e| e.to_str()).unwrap_or(""); + if ext == "md" { + total_notes += 1; + notes_size += size; + } else { + total_attachments += 1; + attachments_size += size; + } + } + + Ok(VaultStats { + total_notes, + total_attachments, + notes_size, + attachments_size, + total_size: notes_size + attachments_size, + }) +} + +#[tauri::command] +pub fn import_obsidian(app: AppHandle) -> Result<(), String> { + let vault_path = { + let state = app.state::(); + let config = state.config.lock().map_err(|e| e.to_string())?; + config + .active_vault + .clone() + .ok_or("No active vault".to_string())? + }; + // Fire-and-forget: return immediately, do work in background thread + std::thread::spawn(move || { + use tauri::Emitter; + match do_import_obsidian(app.clone(), &vault_path) { + Ok(result) => { + let _ = app.emit( + "import-done", + serde_json::json!({ + "success": true, + "files_converted": result.files_converted, + "links_converted": result.links_converted, + }), + ); + } + Err(e) => { + let _ = app.emit( + "import-done", + serde_json::json!({ + "success": false, + "error": e, + }), + ); + } + } + }); + Ok(()) +} + +fn do_import_obsidian(app: AppHandle, vault_path: &str) -> Result { + // Pause file watcher during import + let state = app.state::(); + state + .importing + .store(true, std::sync::atomic::Ordering::Relaxed); + + let result = do_import_obsidian_inner(vault_path); + + // Resume file watcher + state + .importing + .store(false, std::sync::atomic::Ordering::Relaxed); + + result +} + +fn do_import_obsidian_inner(vault_path: &str) -> Result { + let vault = std::path::Path::new(vault_path); + + // Build file index: filename -> relative path from vault root + let mut file_index: std::collections::HashMap = + std::collections::HashMap::new(); + for entry in walkdir::WalkDir::new(vault) + .into_iter() + .filter_map(|e| e.ok()) + { + let path = entry.path(); + if !path.is_file() { + continue; + } + if let Some(name) = path.file_name().and_then(|n| n.to_str()) { + if let Ok(rel) = path.strip_prefix(vault) { + file_index.insert(name.to_string(), rel.to_string_lossy().to_string()); + } + } + } + + let wiki_embed = + regex::Regex::new(r"!\[\[([^\]|]+?)(?:\|([^\]]*))?\]\]").map_err(|e| e.to_string())?; + let wiki_link = + regex::Regex::new(r"\[\[([^\]|]+?)(?:\|([^\]]*))?\]\]").map_err(|e| e.to_string())?; + let md_img = regex::Regex::new(r"!\[([^\]]*)\]\(([^)]+)\)").map_err(|e| e.to_string())?; + let md_link = regex::Regex::new(r"\[([^\]]+)\]\(([^)]+)\)").map_err(|e| e.to_string())?; + + let mut files_converted: u64 = 0; + let mut links_converted: u64 = 0; + + // Walk all markdown files + let md_files: Vec<_> = walkdir::WalkDir::new(vault) + .into_iter() + .filter_map(|e| e.ok()) + .filter(|e| { + let p = e.path(); + p.is_file() + && p.extension().and_then(|x| x.to_str()) == Some("md") + && !p.to_string_lossy().contains("/.helixnotes/") + && !p.to_string_lossy().contains("/.trash/") + }) + .collect(); + + for entry in &md_files { + let path = entry.path(); + let content = match std::fs::read_to_string(path) { + Ok(c) => c, + Err(_) => continue, + }; + let note_dir = path.parent().unwrap_or(std::path::Path::new("")); + + let mut changed = false; + // Convert embeds first: ![[file.ext]] or ![[file.ext|alt]] + let after_embeds = wiki_embed + .replace_all(&content, |caps: ®ex::Captures| { + changed = true; + links_converted += 1; + let file_ref = &caps[1]; + let alt = caps.get(2).map(|m| m.as_str()).unwrap_or(""); + let resolved = resolve_wiki_ref(&file_index, file_ref); + // Convert vault-root-relative path to note-relative + let abs_target = vault.join(&resolved); + let rel = pathdiff( + abs_target.to_str().unwrap_or(""), + note_dir.to_str().unwrap_or(""), + ) + .unwrap_or(resolved); + let encoded = rel.replace(' ', "%20"); + // Use image syntax only for images/PDFs; regular link for other files + let ext = std::path::Path::new(file_ref) + .extension() + .and_then(|e| e.to_str()) + .unwrap_or("") + .to_lowercase(); + let is_embeddable = matches!( + ext.as_str(), + "png" | "jpg" | "jpeg" | "gif" | "svg" | "webp" | "bmp" | "ico" | "pdf" + ); + if is_embeddable { + format!("![{}]({})", alt, encoded) + } else { + let display = if alt.is_empty() { + file_ref.rsplit('/').next().unwrap_or(file_ref) + } else { + alt + }; + format!("[{}]({})", display, encoded) + } + }) + .to_string(); + + // Convert wiki links: [[note]] or [[note|display]] + let after_links = wiki_link + .replace_all(&after_embeds, |caps: ®ex::Captures| { + changed = true; + links_converted += 1; + let note_ref = &caps[1]; + let display = caps.get(2).map(|m| m.as_str()).unwrap_or(note_ref); + let resolved = resolve_wiki_ref(&file_index, note_ref); + // Convert vault-root-relative path to note-relative + let abs_target = vault.join(&resolved); + let rel = pathdiff( + abs_target.to_str().unwrap_or(""), + note_dir.to_str().unwrap_or(""), + ) + .unwrap_or(resolved); + let encoded = rel.replace(' ', "%20"); + format!("[{}]({})", display, encoded) + }) + .to_string(); + + // Fix bare-filename standard markdown references: ![alt](filename.ext) where filename has no path separator + + let after_img_fix = md_img + .replace_all(&after_links, |caps: ®ex::Captures| { + let alt = &caps[1]; + let src = &caps[2]; + let decoded = percent_decode(src); + // Skip URLs and absolute paths + if decoded.starts_with("http") || decoded.starts_with('/') { + return format!("![{}]({})", alt, src); + } + // Try to resolve bare filename via file index + if !decoded.contains('/') { + if let Some(rel) = file_index.get(&decoded) { + changed = true; + links_converted += 1; + let abs_target = vault.join(rel); + let note_rel = pathdiff( + abs_target.to_str().unwrap_or(""), + note_dir.to_str().unwrap_or(""), + ) + .unwrap_or(rel.clone()); + let encoded = note_rel.replace(' ', "%20"); + return format!("![{}]({})", alt, encoded); + } + } + // Fix vault-root-relative paths: if the path resolves from vault root, make it note-relative + if decoded.contains('/') { + let vault_abs = vault.join(&decoded); + if vault_abs.exists() { + let note_rel = pathdiff( + vault_abs.to_str().unwrap_or(""), + note_dir.to_str().unwrap_or(""), + ) + .unwrap_or(decoded.clone()); + if note_rel != decoded { + changed = true; + links_converted += 1; + let encoded = note_rel.replace(' ', "%20"); + return format!("![{}]({})", alt, encoded); + } + } + } + format!("![{}]({})", alt, src) + }) + .to_string(); + + let after_link_fix = md_link + .replace_all(&after_img_fix, |caps: ®ex::Captures| { + let display = &caps[1]; + let href = &caps[2]; + let decoded = percent_decode(href); + // Skip URLs and absolute paths + if decoded.starts_with("http") || decoded.starts_with('/') { + return format!("[{}]({})", display, href); + } + // Try to resolve bare filename via file index + if !decoded.contains('/') { + if let Some(rel) = file_index.get(&decoded) { + changed = true; + links_converted += 1; + let abs_target = vault.join(rel); + let note_rel = pathdiff( + abs_target.to_str().unwrap_or(""), + note_dir.to_str().unwrap_or(""), + ) + .unwrap_or(rel.clone()); + let encoded = note_rel.replace(' ', "%20"); + return format!("[{}]({})", display, encoded); + } + } + // Fix vault-root-relative paths + if decoded.contains('/') { + let vault_abs = vault.join(&decoded); + if vault_abs.exists() { + let note_rel = pathdiff( + vault_abs.to_str().unwrap_or(""), + note_dir.to_str().unwrap_or(""), + ) + .unwrap_or(decoded.clone()); + if note_rel != decoded { + changed = true; + links_converted += 1; + let encoded = note_rel.replace(' ', "%20"); + return format!("[{}]({})", display, encoded); + } + } + } + format!("[{}]({})", display, href) + }) + .to_string(); + + if changed { + let _ = std::fs::write(path, after_link_fix); + files_converted += 1; + } + } + + // ── Phase 2: Move all non-.md files into .helixnotes/attachments/ preserving structure ── + let attachments_dir = vault.join(".helixnotes").join("attachments"); + let _ = std::fs::create_dir_all(&attachments_dir); + + let attachment_files: Vec<_> = walkdir::WalkDir::new(vault) + .into_iter() + .filter_map(|e| e.ok()) + .filter(|e| { + let p = e.path(); + if !p.is_file() { + return false; + } + if p.extension().and_then(|x| x.to_str()) == Some("md") { + return false; + } + let path_str = p.to_string_lossy(); + !path_str.contains("/.helixnotes/") + && !path_str.contains("/.obsidian/") + && !path_str.contains("/.trash/") + && !path_str.contains("/.stfolder") + && !path_str.contains("/.claude/") + }) + .collect(); + + // Map: old vault-relative path -> new vault-relative path (preserving structure) + let mut moved_files: std::collections::HashMap = + std::collections::HashMap::new(); + + for entry in &attachment_files { + let src_path = entry.path(); + let old_rel = match src_path.strip_prefix(vault) { + Ok(r) => r.to_string_lossy().to_string(), + Err(_) => continue, + }; + + // Preserve directory structure: ArkHost/Files/img.png -> .helixnotes/attachments/ArkHost/Files/img.png + let new_rel = format!(".helixnotes/attachments/{}", old_rel); + let dest_path = vault.join(&new_rel); + + if let Some(parent) = dest_path.parent() { + let _ = std::fs::create_dir_all(parent); + } + + if std::fs::rename(src_path, &dest_path).is_ok() + || std::fs::copy(src_path, &dest_path) + .and_then(|_| std::fs::remove_file(src_path)) + .is_ok() + { + moved_files.insert(old_rel, new_rel); + } + } + + // ── Phase 3: Rewrite references in markdown files to point to new locations ── + // Use regex to only replace inside ![...](...) and [...](...) patterns + if !moved_files.is_empty() { + let md_ref = regex::Regex::new(r"(!?\[[^\]]*\])\(([^)]+)\)").map_err(|e| e.to_string())?; + + let md_files_pass2: Vec<_> = walkdir::WalkDir::new(vault) + .into_iter() + .filter_map(|e| e.ok()) + .filter(|e| { + let p = e.path(); + p.is_file() + && p.extension().and_then(|x| x.to_str()) == Some("md") + && !p.to_string_lossy().contains("/.helixnotes/") + && !p.to_string_lossy().contains("/.trash/") + }) + .collect(); + + for entry in &md_files_pass2 { + let path = entry.path(); + let content = match std::fs::read_to_string(path) { + Ok(c) => c, + Err(_) => continue, + }; + let note_dir = path.parent().unwrap_or(std::path::Path::new("")); + let mut changed_p3 = false; + + let new_content = md_ref + .replace_all(&content, |caps: ®ex::Captures| { + let prefix = &caps[1]; // ![alt] or [text] + let href = &caps[2]; + let decoded_href = percent_decode(href); + + // Skip URLs + if decoded_href.starts_with("http") || decoded_href.starts_with("data:") { + return format!("{}({})", prefix, href); + } + + // Resolve the href to a vault-relative path (files already moved, can't use .exists()) + // Try note-dir-relative first, then vault-root-relative + let abs_from_note = note_dir.join(&decoded_href); + let rel_from_note = abs_from_note + .strip_prefix(vault) + .ok() + .map(|r| r.to_string_lossy().to_string()); + let rel_from_vault = decoded_href.clone(); + + // Check note-relative resolution first, then vault-root + let old_vault_rel = rel_from_note + .as_ref() + .filter(|r| moved_files.contains_key(r.as_str())) + .cloned() + .or_else(|| { + if moved_files.contains_key(&rel_from_vault) { + Some(rel_from_vault) + } else { + None + } + }); + + if let Some(old_rel) = old_vault_rel { + if let Some(new_rel) = moved_files.get(&old_rel) { + changed_p3 = true; + let new_abs = vault.join(new_rel); + let new_note_rel = pathdiff( + new_abs.to_str().unwrap_or(""), + note_dir.to_str().unwrap_or(""), + ) + .unwrap_or(new_rel.clone()); + let encoded = new_note_rel.replace(' ', "%20"); + return format!("{}({})", prefix, encoded); + } + } + + format!("{}({})", prefix, href) + }) + .to_string(); + + if changed_p3 { + let _ = std::fs::write(path, new_content); + } + } + } + + // Clean up empty directories left behind after moving files + cleanup_empty_dirs(vault); + + Ok(ImportResult { + files_converted, + links_converted, + }) +} + +/// Remove empty directories recursively (bottom-up), skipping .helixnotes and .obsidian +fn cleanup_empty_dirs(root: &std::path::Path) { + let mut dirs: Vec<_> = walkdir::WalkDir::new(root) + .into_iter() + .filter_map(|e| e.ok()) + .filter(|e| e.path().is_dir()) + .map(|e| e.path().to_path_buf()) + .collect(); + + // Sort by depth (deepest first) so we clean bottom-up + dirs.sort_by(|a, b| b.components().count().cmp(&a.components().count())); + + for dir in dirs { + let dir_str = dir.to_string_lossy(); + if dir_str.contains("/.helixnotes") || dir_str.contains("/.obsidian") || dir == root { + continue; + } + if let Ok(mut entries) = std::fs::read_dir(&dir) { + if entries.next().is_none() { + let _ = std::fs::remove_dir(&dir); + } + } + } +} + +/// Compute a relative path from `base` to `target` +fn pathdiff(target: &str, base: &str) -> Result { + let target = std::path::Path::new(target); + let base = std::path::Path::new(base); + + let target_components: Vec<_> = target.components().collect(); + let base_components: Vec<_> = base.components().collect(); + + // Find common prefix length + let common = target_components + .iter() + .zip(base_components.iter()) + .take_while(|(a, b)| a == b) + .count(); + + let mut result = std::path::PathBuf::new(); + // Go up from base to common ancestor + for _ in common..base_components.len() { + result.push(".."); + } + // Go down from common ancestor to target + for component in &target_components[common..] { + result.push(component); + } + + Ok(result.to_string_lossy().to_string()) +} + +fn percent_decode(s: &str) -> String { + let mut result = String::with_capacity(s.len()); + let mut chars = s.bytes(); + while let Some(b) = chars.next() { + if b == b'%' { + let hi = chars.next(); + let lo = chars.next(); + if let (Some(h), Some(l)) = (hi, lo) { + if let Ok(byte) = u8::from_str_radix(&format!("{}{}", h as char, l as char), 16) { + result.push(byte as char); + continue; + } + } + result.push('%'); + } else { + result.push(b as char); + } + } + result +} + +fn resolve_wiki_ref( + file_index: &std::collections::HashMap, + reference: &str, +) -> String { + let reference = reference.trim(); + // Direct match by filename + if let Some(rel) = file_index.get(reference) { + return rel.clone(); + } + // Try with .md extension + let with_md = format!("{}.md", reference); + if let Some(rel) = file_index.get(&with_md) { + return rel.clone(); + } + // Try matching just the filename part (e.g. "folder/note" -> "note.md") + if let Some(name) = reference.rsplit('/').next() { + if let Some(rel) = file_index.get(name) { + return rel.clone(); + } + let name_md = format!("{}.md", name); + if let Some(rel) = file_index.get(&name_md) { + return rel.clone(); + } + } + // Fallback: return as-is + reference.to_string() +} + +// ── Open file with system default handler ── + +#[tauri::command] +pub fn open_file(path: String) -> Result<(), String> { + #[cfg(target_os = "linux")] + { + std::process::Command::new("xdg-open") + .arg(&path) + .spawn() + .map_err(|e| format!("Failed to open {}: {}", path, e))?; + } + #[cfg(target_os = "macos")] + { + std::process::Command::new("open") + .arg(&path) + .spawn() + .map_err(|e| format!("Failed to open {}: {}", path, e))?; + } + #[cfg(target_os = "windows")] + { + std::process::Command::new("cmd") + .args(["/C", "start", "", &path]) + .spawn() + .map_err(|e| format!("Failed to open {}: {}", path, e))?; + } + Ok(()) +} + +#[tauri::command] +pub fn copy_file_to(source: String, destination: String) -> Result<(), String> { + std::fs::copy(&source, &destination).map_err(|e| format!("Failed to copy file: {}", e))?; + Ok(()) +} + +// ── Backup ── + +#[tauri::command] +pub fn create_backup(app: AppHandle) -> Result<(), String> { + let (vault_path, backup_dir, include_attachments, max_count) = { + let state = app.state::(); + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.clone().ok_or("No active vault")?; + let backup_dir = crate::backup::get_backup_dir(&config.backup_location)?; + ( + vault_path, + backup_dir, + config.backup_include_attachments, + config.backup_max_count, + ) + }; + + std::thread::spawn(move || { + use tauri::Emitter; + match crate::backup::create_backup(&vault_path, &backup_dir, include_attachments) { + Ok(entry) => { + // Update last backup time + let state = app.state::(); + if let Ok(mut config) = state.config.lock() { + config.last_backup_time = Some(entry.created.clone()); + let _ = save_app_config(&config); + } + // Cleanup old backups + let _ = crate::backup::cleanup_old_backups(&backup_dir, max_count); + let _ = app.emit( + "backup-done", + serde_json::json!({ + "success": true, + "entry": entry, + }), + ); + } + Err(e) => { + let _ = app.emit( + "backup-done", + serde_json::json!({ + "success": false, + "error": e, + }), + ); + } + } + }); + Ok(()) +} + +#[tauri::command] +pub fn list_backups(state: State<'_, AppState>) -> Result, String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let backup_dir = crate::backup::get_backup_dir(&config.backup_location)?; + crate::backup::list_backups(&backup_dir) +} + +#[tauri::command] +pub fn restore_backup(app: AppHandle, backup_path: String) -> Result<(), String> { + let vault_path = { + let state = app.state::(); + let config = state.config.lock().map_err(|e| e.to_string())?; + config.active_vault.clone().ok_or("No active vault")? + }; + + std::thread::spawn(move || { + use tauri::Emitter; + match crate::backup::restore_backup(&vault_path, &backup_path) { + Ok(()) => { + let _ = app.emit( + "restore-done", + serde_json::json!({ + "success": true, + }), + ); + } + Err(e) => { + let _ = app.emit( + "restore-done", + serde_json::json!({ + "success": false, + "error": e, + }), + ); + } + } + }); + Ok(()) +} + +#[tauri::command] +pub fn delete_backup(backup_path: String) -> Result<(), String> { + crate::backup::delete_backup(&backup_path) +} + +#[tauri::command] +pub fn set_backup_settings( + state: State<'_, AppState>, + enabled: bool, + frequency: String, + max_count: u32, + location: Option, + include_attachments: bool, +) -> Result<(), String> { + let mut config = state.config.lock().map_err(|e| e.to_string())?; + config.backup_enabled = enabled; + config.backup_frequency = frequency; + config.backup_max_count = max_count; + config.backup_location = location; + config.backup_include_attachments = include_attachments; + save_app_config(&config)?; + Ok(()) +} + +// ── Version History ── + +#[tauri::command] +pub fn get_note_versions( + state: State<'_, AppState>, + note_id: String, +) -> Result, String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + crate::history::list_versions(vault_path, ¬e_id) +} + +#[tauri::command] +pub fn create_version( + state: State<'_, AppState>, + path: String, + note_id: String, +) -> Result<(), String> { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + let max_versions = config.max_versions_per_note; + let raw = std::fs::read_to_string(&path).map_err(|e| e.to_string())?; + crate::history::force_snapshot(vault_path, ¬e_id, &raw, max_versions); + Ok(()) +} + +#[tauri::command] +pub fn get_note_version_content( + state: State<'_, AppState>, + note_id: String, + timestamp: String, +) -> Result { + let config = state.config.lock().map_err(|e| e.to_string())?; + let vault_path = config.active_vault.as_ref().ok_or("No active vault")?; + crate::history::get_version(vault_path, ¬e_id, ×tamp) +} + +// ── AI ── + +#[tauri::command] +pub fn set_ai_settings( + state: State<'_, AppState>, + provider: Option, + api_key: Option, + model: String, + writing_style: Option, +) -> Result<(), String> { + let mut config = state.config.lock().map_err(|e| e.to_string())?; + let key = api_key.filter(|k| !k.is_empty()); + match provider.as_deref() { + Some("openai") => config.openai_api_key = key, + _ => config.ai_api_key = key, + } + config.ai_provider = provider; + config.ai_model = model; + config.ai_writing_style = writing_style.filter(|s| !s.trim().is_empty()); + save_app_config(&config)?; + Ok(()) +} + +#[tauri::command] +pub fn test_ai_connection(app: AppHandle) -> Result<(), String> { + let (provider, api_key, model) = { + let state = app.state::(); + let config = state.config.lock().map_err(|e| e.to_string())?; + let provider = config + .ai_provider + .clone() + .unwrap_or_else(|| "anthropic".to_string()); + let key = if provider == "openai" { + config.openai_api_key.clone() + } else { + config.ai_api_key.clone() + } + .ok_or("No API key configured")?; + let model = config.ai_model.clone(); + (provider, key, model) + }; + + std::thread::spawn(move || { + use tauri::Emitter; + let rt = tokio::runtime::Runtime::new().unwrap(); + let result = rt.block_on(crate::ai::test_connection(&provider, &api_key, &model)); + match result { + Ok(msg) => { + let _ = app.emit( + "ai-test-result", + serde_json::json!({ "success": true, "message": msg }), + ); + } + Err(e) => { + let _ = app.emit( + "ai-test-result", + serde_json::json!({ "success": false, "error": e }), + ); + } + } + }); + Ok(()) +} + +#[tauri::command] +pub fn ai_ask( + app: AppHandle, + action: String, + text: String, + custom_prompt: Option, + request_id: String, +) -> Result<(), String> { + let (provider, api_key, model, writing_style) = { + let state = app.state::(); + let config = state.config.lock().map_err(|e| e.to_string())?; + let provider = config + .ai_provider + .clone() + .unwrap_or_else(|| "anthropic".to_string()); + let key = if provider == "openai" { + config.openai_api_key.clone() + } else { + config.ai_api_key.clone() + } + .ok_or("No API key configured. Go to Settings > AI to set up your API key.")?; + let model = config.ai_model.clone(); + let style = config.ai_writing_style.clone(); + (provider, key, model, style) + }; + + let mut system_prompt = "You are a helpful writing assistant inside a note-taking app called HelixNotes. \ + You help users improve, rewrite, summarize, and transform their text. \ + Return ONLY the resulting text — no explanations, no markdown code fences, no preamble. \ + Preserve the original language of the text unless specifically asked to translate. \ + Preserve any markdown formatting (bold, italic, links, images, tables, etc.) unless the user asks to change it. \ + If the text contains placeholders like __MEDIA_0__, __MEDIA_1__, etc., keep them exactly as they are in their original positions — they represent images and embedded files.".to_string(); + + if let Some(ref style) = writing_style { + system_prompt.push_str(&format!( + "\n\nThe user's preferred writing style: {}", + style + )); + } + + let user_message = match action.as_str() { + "improve" => format!("Improve the writing quality of this text while keeping the same meaning and tone:\n\n{}", text), + "fix_grammar" => format!("Fix all grammar, spelling, and punctuation errors in this text. Keep the original style:\n\n{}", text), + "shorter" => format!("Make this text more concise while keeping the key points:\n\n{}", text), + "longer" => format!("Expand this text with more detail while keeping the same style and tone:\n\n{}", text), + "professional" => format!("Rewrite this text in a professional, formal tone:\n\n{}", text), + "friendly" => format!("Rewrite this text in a casual, friendly tone:\n\n{}", text), + "summarize" => format!("Write a brief summary of this text:\n\n{}", text), + "explain" => format!("Explain this text in simpler terms:\n\n{}", text), + "translate_en" => format!("Translate this text to English:\n\n{}", text), + "translate_nl" => format!("Translate this text to Dutch:\n\n{}", text), + "translate_de" => format!("Translate this text to German:\n\n{}", text), + "translate_fr" => format!("Translate this text to French:\n\n{}", text), + "translate_es" => format!("Translate this text to Spanish:\n\n{}", text), + "custom" => { + let prompt = custom_prompt.unwrap_or_else(|| "Improve this text".to_string()); + format!("{}\n\n{}", prompt, text) + } + _ => format!("Improve this text:\n\n{}", text), + }; + + crate::ai::ai_request( + app, + provider, + api_key, + model, + system_prompt, + user_message, + request_id, + ); + Ok(()) +} + +// ── Helpers ── + +fn app_config_path() -> Result { + let config_dir = dirs::config_dir().ok_or("Cannot find config directory")?; + let app_dir = config_dir.join("helixnotes"); + std::fs::create_dir_all(&app_dir).map_err(|e| e.to_string())?; + Ok(app_dir.join("config.json")) +} + +pub fn load_app_config() -> AppConfig { + app_config_path() + .ok() + .and_then(|p| std::fs::read_to_string(p).ok()) + .and_then(|s| serde_json::from_str(&s).ok()) + .unwrap_or_default() +} + +fn save_app_config(config: &AppConfig) -> Result<(), String> { + let path = app_config_path()?; + let data = serde_json::to_string_pretty(config).map_err(|e| e.to_string())?; + std::fs::write(path, data).map_err(|e| e.to_string())?; + Ok(()) +} diff --git a/src-tauri/src/history.rs b/src-tauri/src/history.rs new file mode 100644 index 0000000..89aaafd --- /dev/null +++ b/src-tauri/src/history.rs @@ -0,0 +1,171 @@ +use std::fs; +use std::path::{Path, PathBuf}; + +use chrono::{DateTime, Utc}; + +use crate::types::VersionEntry; + +/// Directory: .helixnotes/history// +fn history_dir(vault_path: &str, note_id: &str) -> PathBuf { + Path::new(vault_path) + .join(".helixnotes") + .join("history") + .join(note_id) +} + +/// Save a version snapshot if enough time has passed since the last one. +/// Minimum interval: 5 minutes between snapshots. +pub fn maybe_snapshot(vault_path: &str, note_id: &str, raw_content: &str, max_versions: u32) { + let dir = history_dir(vault_path, note_id); + + // Check if we should create a snapshot (5 min cooldown) + if let Ok(entries) = fs::read_dir(&dir) { + let mut files: Vec = entries + .filter_map(|e| e.ok()) + .filter_map(|e| e.file_name().to_str().map(|s| s.to_string())) + .filter(|n| n.ends_with(".md")) + .collect(); + files.sort(); + + if let Some(last) = files.last() { + if let Some(ts) = last.strip_suffix(".md") { + // Parse timestamp: 2026-02-08T18-30-00.md + if let Some(t_pos) = ts.find('T') { + let date_part = &ts[..t_pos]; + let time_part = &ts[t_pos + 1..]; + let time_colons = time_part.replace('-', ":"); + let iso = format!("{}T{}Z", date_part, time_colons); + if let Ok(last_time) = iso.parse::>() { + let elapsed = Utc::now() - last_time; + if elapsed.num_minutes() < 5 { + return; // Too soon, skip + } + } + } + } + } + } + + // Create snapshot + if let Err(e) = fs::create_dir_all(&dir) { + eprintln!("Failed to create history dir: {}", e); + return; + } + + let timestamp = Utc::now().format("%Y-%m-%dT%H-%M-%S").to_string(); + let filename = format!("{}.md", timestamp); + let path = dir.join(&filename); + + if let Err(e) = fs::write(&path, raw_content) { + eprintln!("Failed to write version snapshot: {}", e); + return; + } + + // Prune old versions + if max_versions > 0 { + let _ = prune_versions(&dir, max_versions); + } +} + +/// Force-create a version snapshot, bypassing the cooldown. +pub fn force_snapshot(vault_path: &str, note_id: &str, raw_content: &str, max_versions: u32) { + let dir = history_dir(vault_path, note_id); + + if let Err(e) = fs::create_dir_all(&dir) { + eprintln!("Failed to create history dir: {}", e); + return; + } + + let timestamp = Utc::now().format("%Y-%m-%dT%H-%M-%S").to_string(); + let filename = format!("{}.md", timestamp); + let path = dir.join(&filename); + + if let Err(e) = fs::write(&path, raw_content) { + eprintln!("Failed to write version snapshot: {}", e); + return; + } + + if max_versions > 0 { + let _ = prune_versions(&dir, max_versions); + } +} + +/// List all version snapshots for a note, newest first. +pub fn list_versions(vault_path: &str, note_id: &str) -> Result, String> { + let dir = history_dir(vault_path, note_id); + if !dir.exists() { + return Ok(Vec::new()); + } + + let mut entries: Vec = Vec::new(); + + for entry in fs::read_dir(&dir).map_err(|e| e.to_string())? { + let entry = entry.map_err(|e| e.to_string())?; + let path = entry.path(); + if path.extension().map_or(false, |ext| ext == "md") { + let filename = path + .file_stem() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + let meta = fs::metadata(&path).map_err(|e| e.to_string())?; + + // Parse timestamp from filename + let timestamp = if let Some(t_pos) = filename.find('T') { + let date_part = &filename[..t_pos]; + let time_part = &filename[t_pos + 1..]; + let time_colons = time_part.replace('-', ":"); + format!("{}T{}Z", date_part, time_colons) + } else { + filename.clone() + }; + + entries.push(VersionEntry { + timestamp, + size: meta.len(), + }); + } + } + + // Newest first + entries.sort_by(|a, b| b.timestamp.cmp(&a.timestamp)); + Ok(entries) +} + +/// Get the raw content of a specific version. +pub fn get_version(vault_path: &str, note_id: &str, timestamp: &str) -> Result { + // Convert ISO timestamp back to filename: 2026-02-08T18:30:00Z → 2026-02-08T18-30-00.md + let filename = if let Some(t_pos) = timestamp.find('T') { + let date_part = ×tamp[..t_pos]; + let time_part = timestamp[t_pos + 1..].trim_end_matches('Z'); + let time_dashes = time_part.replace(':', "-"); + format!("{}.md", format!("{}T{}", date_part, time_dashes)) + } else { + format!("{}.md", timestamp) + }; + + let path = history_dir(vault_path, note_id).join(&filename); + fs::read_to_string(&path).map_err(|e| format!("Version not found: {}", e)) +} + +/// Remove old versions keeping only the newest `max` entries. +fn prune_versions(dir: &Path, max: u32) -> Result<(), String> { + let mut files: Vec = fs::read_dir(dir) + .map_err(|e| e.to_string())? + .filter_map(|e| e.ok()) + .map(|e| e.path()) + .filter(|p| p.extension().map_or(false, |ext| ext == "md")) + .collect(); + + // Sort by name (timestamps sort lexicographically) — newest last + files.sort(); + + if files.len() as u32 > max { + let to_remove = files.len() as u32 - max; + for path in files.iter().take(to_remove as usize) { + let _ = fs::remove_file(path); + } + } + + Ok(()) +} diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs new file mode 100644 index 0000000..125f2f9 --- /dev/null +++ b/src-tauri/src/lib.rs @@ -0,0 +1,138 @@ +mod ai; +mod backup; +mod commands; +mod history; +mod search; +mod state; +mod types; +mod vault; + +use state::AppState; +use tauri::{ + image::Image, + menu::{MenuBuilder, MenuItemBuilder}, + tray::TrayIconBuilder, + Manager, +}; + +#[cfg_attr(mobile, tauri::mobile_entry_point)] +pub fn run() { + let config = commands::load_app_config(); + let show_tray = config.show_tray_icon; + let app_state = AppState::new(config); + + tauri::Builder::default() + .plugin(tauri_plugin_dialog::init()) + .plugin(tauri_plugin_fs::init()) + .plugin(tauri_plugin_opener::init()) + .plugin(tauri_plugin_updater::Builder::new().build()) + .setup(move |app| { + if cfg!(debug_assertions) { + app.handle().plugin( + tauri_plugin_log::Builder::default() + .level(log::LevelFilter::Info) + .build(), + )?; + } + + if show_tray { + setup_tray(app)?; + } + + Ok(()) + }) + .manage(app_state) + .invoke_handler(tauri::generate_handler![ + commands::open_vault, + commands::get_app_config, + commands::set_theme, + commands::set_accent_color, + commands::set_font_size, + commands::set_font_family, + commands::get_notebooks, + commands::create_notebook, + commands::rename_notebook, + commands::delete_notebook, + commands::get_notes, + commands::read_note, + commands::save_note, + commands::create_note, + commands::rename_note, + commands::delete_note, + commands::move_note, + commands::get_all_tags, + commands::get_all_note_titles, + commands::search_notes, + commands::reindex, + commands::get_trash, + commands::restore_note, + commands::permanent_delete, + commands::empty_trash, + commands::load_vault_state, + commands::save_vault_state, + commands::save_image, + commands::save_attachment, + commands::get_notebook_icons, + commands::set_notebook_icon, + commands::set_general_settings, + commands::get_quick_access, + commands::add_quick_access, + commands::remove_quick_access, + commands::get_vault_stats, + commands::import_obsidian, + commands::open_file, + commands::copy_file_to, + commands::create_backup, + commands::list_backups, + commands::restore_backup, + commands::delete_backup, + commands::set_backup_settings, + commands::get_note_versions, + commands::get_note_version_content, + commands::create_version, + commands::set_ai_settings, + commands::test_ai_connection, + commands::ai_ask, + ]) + .run(tauri::generate_context!()) + .expect("error while running tauri application"); +} + +fn setup_tray(app: &mut tauri::App) -> Result<(), Box> { + let show = MenuItemBuilder::with_id("show", "Show HelixNotes").build(app)?; + let quit = MenuItemBuilder::with_id("quit", "Quit").build(app)?; + let menu = MenuBuilder::new(app).items(&[&show, &quit]).build()?; + + let _tray = TrayIconBuilder::new() + .icon( + Image::from_path("icons/32x32.png") + .unwrap_or_else(|_| app.default_window_icon().cloned().unwrap()), + ) + .menu(&menu) + .tooltip("HelixNotes") + .on_menu_event(|app, event| match event.id().as_ref() { + "show" => { + if let Some(window) = app.get_webview_window("main") { + let _ = window.show(); + let _ = window.unminimize(); + let _ = window.set_focus(); + } + } + "quit" => { + app.exit(0); + } + _ => {} + }) + .on_tray_icon_event(|tray, event| { + if let tauri::tray::TrayIconEvent::Click { .. } = event { + if let Some(window) = tray.app_handle().get_webview_window("main") { + let _ = window.show(); + let _ = window.unminimize(); + let _ = window.set_focus(); + } + } + }) + .build(app)?; + + Ok(()) +} diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs new file mode 100644 index 0000000..ad5fe83 --- /dev/null +++ b/src-tauri/src/main.rs @@ -0,0 +1,6 @@ +// Prevents additional console window on Windows in release, DO NOT REMOVE!! +#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] + +fn main() { + app_lib::run(); +} diff --git a/src-tauri/src/search/mod.rs b/src-tauri/src/search/mod.rs new file mode 100644 index 0000000..1b805d9 --- /dev/null +++ b/src-tauri/src/search/mod.rs @@ -0,0 +1,175 @@ +use crate::types::SearchResult; +use crate::vault::frontmatter; +use crate::vault::operations::helixnotes_dir; +use std::fs; +use std::path::Path; +use std::sync::Mutex; +use tantivy::collector::TopDocs; +use tantivy::directory::MmapDirectory; +use tantivy::query::QueryParser; +use tantivy::schema::*; +use tantivy::{Index, IndexWriter, TantivyDocument}; +use walkdir::WalkDir; + +pub struct SearchIndex { + index: Index, + writer: Mutex>, + #[allow(dead_code)] + schema: Schema, + path_field: Field, + title_field: Field, + body_field: Field, + tags_field: Field, +} + +impl SearchIndex { + pub fn new(vault_path: &str) -> Result { + let index_dir = helixnotes_dir(vault_path).join("search_index"); + fs::create_dir_all(&index_dir).map_err(|e| e.to_string())?; + + let mut schema_builder = Schema::builder(); + let path_field = schema_builder.add_text_field("path", STRING | STORED); + let title_field = schema_builder.add_text_field("title", TEXT | STORED); + let body_field = schema_builder.add_text_field("body", TEXT); + let tags_field = schema_builder.add_text_field("tags", TEXT | STORED); + let schema = schema_builder.build(); + + let dir = MmapDirectory::open(&index_dir).map_err(|e| e.to_string())?; + let index = Index::open_or_create(dir, schema.clone()).map_err(|e| e.to_string())?; + + let writer = index + .writer(50_000_000) + .map_err(|e| e.to_string())?; + + Ok(Self { + index, + writer: Mutex::new(Some(writer)), + schema, + path_field, + title_field, + body_field, + tags_field, + }) + } + + pub fn rebuild(&self, vault_path: &str) -> Result<(), String> { + let mut writer_guard = self.writer.lock().map_err(|e| e.to_string())?; + let writer = writer_guard.as_mut().ok_or("Writer not available")?; + + writer.delete_all_documents().map_err(|e| e.to_string())?; + + let hn_dir = helixnotes_dir(vault_path); + + for entry in WalkDir::new(vault_path) + .into_iter() + .filter_map(|e| e.ok()) + .filter(|e| { + let p = e.path(); + p.is_file() + && p.extension().and_then(|x| x.to_str()) == Some("md") + && !p.starts_with(&hn_dir) + && !p + .file_name() + .and_then(|n| n.to_str()) + .map(|n| n.starts_with('.')) + .unwrap_or(false) + }) + { + if let Ok(raw) = fs::read_to_string(entry.path()) { + let filename = entry.file_name().to_string_lossy().to_string(); + let (meta, content) = frontmatter::parse_note(&raw, &filename); + let path_str = entry.path().to_string_lossy().to_string(); + + let mut doc = TantivyDocument::new(); + doc.add_text(self.path_field, &path_str); + doc.add_text(self.title_field, &meta.title); + doc.add_text(self.body_field, &content); + doc.add_text(self.tags_field, &meta.tags.join(" ")); + let _ = writer.add_document(doc); + } + } + + writer.commit().map_err(|e| e.to_string())?; + Ok(()) + } + + pub fn index_note(&self, path: &str) -> Result<(), String> { + let p = Path::new(path); + let raw = fs::read_to_string(p).map_err(|e| e.to_string())?; + let filename = p + .file_name() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + let (meta, content) = frontmatter::parse_note(&raw, &filename); + + let mut writer_guard = self.writer.lock().map_err(|e| e.to_string())?; + let writer = writer_guard.as_mut().ok_or("Writer not available")?; + + // Delete old entry + let term = tantivy::Term::from_field_text(self.path_field, path); + writer.delete_term(term); + + // Add updated + let mut doc = TantivyDocument::new(); + doc.add_text(self.path_field, path); + doc.add_text(self.title_field, &meta.title); + doc.add_text(self.body_field, &content); + doc.add_text(self.tags_field, &meta.tags.join(" ")); + let _ = writer.add_document(doc); + + writer.commit().map_err(|e| e.to_string())?; + Ok(()) + } + + pub fn remove_note(&self, path: &str) -> Result<(), String> { + let mut writer_guard = self.writer.lock().map_err(|e| e.to_string())?; + let writer = writer_guard.as_mut().ok_or("Writer not available")?; + let term = tantivy::Term::from_field_text(self.path_field, path); + writer.delete_term(term); + writer.commit().map_err(|e| e.to_string())?; + Ok(()) + } + + pub fn search(&self, query_str: &str, limit: usize) -> Result, String> { + let reader = self.index.reader().map_err(|e| e.to_string())?; + let searcher = reader.searcher(); + + let query_parser = + QueryParser::for_index(&self.index, vec![self.title_field, self.body_field, self.tags_field]); + + let query = query_parser + .parse_query(query_str) + .map_err(|e| e.to_string())?; + + let top_docs = searcher + .search(&query, &TopDocs::with_limit(limit)) + .map_err(|e| e.to_string())?; + + let mut results = Vec::new(); + for (score, doc_address) in top_docs { + let doc: TantivyDocument = searcher.doc(doc_address).map_err(|e| e.to_string())?; + + let path = doc + .get_first(self.path_field) + .and_then(|v| v.as_str()) + .unwrap_or("") + .to_string(); + + let title = doc + .get_first(self.title_field) + .and_then(|v| v.as_str()) + .unwrap_or("") + .to_string(); + + results.push(SearchResult { + path, + title, + snippet: String::new(), + score, + }); + } + + Ok(results) + } +} diff --git a/src-tauri/src/state.rs b/src-tauri/src/state.rs new file mode 100644 index 0000000..fde9643 --- /dev/null +++ b/src-tauri/src/state.rs @@ -0,0 +1,23 @@ +use crate::search::SearchIndex; +use crate::types::AppConfig; +use notify::RecommendedWatcher; +use std::sync::atomic::AtomicBool; +use std::sync::Mutex; + +pub struct AppState { + pub config: Mutex, + pub search_index: Mutex>, + pub watcher: Mutex>, + pub importing: AtomicBool, +} + +impl AppState { + pub fn new(config: AppConfig) -> Self { + Self { + config: Mutex::new(config), + search_index: Mutex::new(None), + watcher: Mutex::new(None), + importing: AtomicBool::new(false), + } + } +} diff --git a/src-tauri/src/types.rs b/src-tauri/src/types.rs new file mode 100644 index 0000000..5f7eb24 --- /dev/null +++ b/src-tauri/src/types.rs @@ -0,0 +1,244 @@ +use chrono::{DateTime, Utc}; +use serde::{Deserialize, Serialize}; + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct NoteMeta { + pub id: String, + pub title: String, + pub tags: Vec, + pub pinned: bool, + pub created: DateTime, + pub modified: DateTime, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct NoteEntry { + pub path: String, + pub relative_path: String, + pub meta: NoteMeta, + pub preview: String, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct NotebookEntry { + pub name: String, + pub path: String, + pub relative_path: String, + pub children: Vec, + pub note_count: usize, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct NoteContent { + pub path: String, + pub meta: NoteMeta, + pub content: String, + pub raw: String, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct VaultConfig { + pub path: String, + pub name: String, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AppConfig { + pub vaults: Vec, + pub active_vault: Option, + pub theme: String, + #[serde(default)] + pub accent_color: Option, + #[serde(default)] + pub font_size: Option, + #[serde(default)] + pub font_family: Option, + #[serde(default)] + pub compact_notes: bool, + #[serde(default)] + pub time_format: String, + #[serde(default)] + pub gpu_acceleration: bool, + #[serde(default)] + pub autostart: bool, + #[serde(default)] + pub pdf_preview: bool, + #[serde(default = "default_pdf_height")] + pub pdf_height: u32, + #[serde(default = "default_title_mode")] + pub title_mode: String, + #[serde(default)] + pub hide_title_in_body: bool, + #[serde(default)] + pub backup_enabled: bool, + #[serde(default = "default_backup_frequency")] + pub backup_frequency: String, + #[serde(default = "default_backup_max")] + pub backup_max_count: u32, + #[serde(default)] + pub backup_location: Option, + #[serde(default)] + pub last_backup_time: Option, + #[serde(default)] + pub backup_include_attachments: bool, + #[serde(default = "default_max_versions")] + pub max_versions_per_note: u32, + #[serde(default)] + pub ai_provider: Option, + #[serde(default)] + pub ai_api_key: Option, + #[serde(default)] + pub openai_api_key: Option, + #[serde(default = "default_ai_model")] + pub ai_model: String, + #[serde(default)] + pub ai_writing_style: Option, + #[serde(default)] + pub default_view_mode: bool, + #[serde(default)] + pub show_tray_icon: bool, + #[serde(default = "default_true")] + pub enable_wiki_links: bool, +} + +fn default_true() -> bool { + true +} + +fn default_pdf_height() -> u32 { + 600 +} + +fn default_backup_frequency() -> String { + "24h".to_string() +} + +fn default_backup_max() -> u32 { + 10 +} + +fn default_title_mode() -> String { + "input".to_string() +} + +fn default_max_versions() -> u32 { + 20 +} + +fn default_ai_model() -> String { + "claude-sonnet-4-5-20250929".to_string() +} + +impl Default for AppConfig { + fn default() -> Self { + Self { + vaults: Vec::new(), + active_vault: None, + theme: "system".to_string(), + accent_color: None, + font_size: None, + font_family: None, + compact_notes: false, + time_format: "relative".to_string(), + gpu_acceleration: true, + autostart: false, + pdf_preview: false, + pdf_height: 600, + title_mode: "input".to_string(), + hide_title_in_body: false, + backup_enabled: false, + backup_frequency: "24h".to_string(), + backup_max_count: 10, + backup_location: None, + last_backup_time: None, + backup_include_attachments: false, + max_versions_per_note: 20, + ai_provider: None, + ai_api_key: None, + openai_api_key: None, + ai_model: "claude-sonnet-4-5-20250929".to_string(), + ai_writing_style: None, + default_view_mode: false, + show_tray_icon: false, + enable_wiki_links: true, + } + } +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct VaultState { + pub last_open_note: Option, + pub sidebar_width: f64, + pub notelist_width: f64, + pub sidebar_collapsed: bool, + #[serde(default)] + pub collapsed_notebooks: Vec, +} + +impl Default for VaultState { + fn default() -> Self { + Self { + last_open_note: None, + sidebar_width: 220.0, + notelist_width: 280.0, + sidebar_collapsed: false, + collapsed_notebooks: Vec::new(), + } + } +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct SearchResult { + pub path: String, + pub title: String, + pub snippet: String, + pub score: f32, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct FileEvent { + pub event_type: String, + pub path: String, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct ImportResult { + pub files_converted: u64, + pub links_converted: u64, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct VaultStats { + pub total_notes: u64, + pub total_attachments: u64, + pub notes_size: u64, + pub attachments_size: u64, + pub total_size: u64, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct BackupEntry { + pub filename: String, + pub path: String, + pub size: u64, + pub created: String, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct VersionEntry { + pub timestamp: String, + pub size: u64, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AiStreamEvent { + pub event_type: String, // "text", "done", "error" + pub text: Option, + pub error: Option, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct NoteTitleEntry { + pub title: String, + pub path: String, +} diff --git a/src-tauri/src/vault/frontmatter.rs b/src-tauri/src/vault/frontmatter.rs new file mode 100644 index 0000000..98abf90 --- /dev/null +++ b/src-tauri/src/vault/frontmatter.rs @@ -0,0 +1,315 @@ +use crate::types::NoteMeta; +use chrono::Utc; +use gray_matter::engine::YAML; +use gray_matter::Matter; +use serde::{Deserialize, Serialize}; +use uuid::Uuid; + +#[derive(Debug, Serialize, Deserialize, Default)] +struct RawFrontmatter { + id: Option, + title: Option, + tags: Option>, + pinned: Option, + created: Option, + modified: Option, +} + +pub fn parse_note(raw: &str, filename: &str) -> (NoteMeta, String) { + let matter = Matter::::new(); + let result = matter.parse(raw); + + let fm: RawFrontmatter = result + .data + .and_then(|d| d.deserialize().ok()) + .unwrap_or_default(); + + let title = fm.title.unwrap_or_else(|| filename_to_title(filename)); + + let created = fm + .created + .and_then(|s| s.parse().ok()) + .unwrap_or_else(Utc::now); + + let modified = fm + .modified + .and_then(|s| s.parse().ok()) + .unwrap_or_else(Utc::now); + + let id = fm.id.unwrap_or_else(|| Uuid::new_v4().to_string()); + + let meta = NoteMeta { + id, + title, + tags: fm.tags.unwrap_or_default(), + pinned: fm.pinned.unwrap_or(false), + created, + modified, + }; + + let content = result.content; + (meta, content) +} + +pub fn serialize_frontmatter(meta: &NoteMeta) -> String { + let tags_str = if meta.tags.is_empty() { + "[]".to_string() + } else { + format!( + "[{}]", + meta.tags + .iter() + .map(|t| format!("{}", t)) + .collect::>() + .join(", ") + ) + }; + + format!( + "---\nid: \"{}\"\ntitle: \"{}\"\ntags: {}\npinned: {}\ncreated: {}\nmodified: {}\n---\n", + meta.id, + meta.title.replace('"', "\\\""), + tags_str, + meta.pinned, + meta.created.to_rfc3339(), + meta.modified.to_rfc3339(), + ) +} + +pub fn update_note_raw(meta: &NoteMeta, body: &str) -> String { + let fm = serialize_frontmatter(meta); + format!("{}{}", fm, body) +} + +fn filename_to_title(filename: &str) -> String { + let stem = filename.trim_end_matches(".md"); + // Only replace dashes/underscores acting as word separators (between non-space chars). + // Keep dashes that are surrounded by spaces (e.g. "Title - Subtitle"). + let mut result = String::with_capacity(stem.len()); + let chars: Vec = stem.chars().collect(); + for (i, &ch) in chars.iter().enumerate() { + if (ch == '-' || ch == '_') + && i > 0 + && i < chars.len() - 1 + && chars[i - 1] != ' ' + && chars[i + 1] != ' ' + { + result.push(' '); + } else { + result.push(ch); + } + } + result +} + +/// Quick title extraction from raw note content (frontmatter only, no full parse) +pub fn extract_title(raw: &str) -> Option { + let matter = Matter::::new(); + let result = matter.parse(raw); + let fm: RawFrontmatter = result + .data + .and_then(|d| d.deserialize().ok()) + .unwrap_or_default(); + fm.title +} + +pub fn extract_preview(content: &str, max_len: usize) -> String { + // Filter out headings and empty lines BEFORE stripping markdown, + // since strip_html_and_markdown collapses all whitespace into one line. + let filtered: String = content + .lines() + .filter(|l| { + let trimmed = l.trim(); + !trimmed.is_empty() + && !trimmed.starts_with('#') + && !trimmed.starts_with("---") + && !trimmed.starts_with("```") + }) + .take(5) + .collect::>() + .join("\n"); + + let text = strip_html_and_markdown(&filtered); + let trimmed = text.trim().to_string(); + + if trimmed.len() > max_len { + let mut end = max_len; + while end > 0 && !trimmed.is_char_boundary(end) { + end -= 1; + } + format!("{}...", &trimmed[..end]) + } else { + trimmed + } +} + +fn strip_html_and_markdown(input: &str) -> String { + let mut result = String::with_capacity(input.len()); + let mut chars = input.chars().peekable(); + let mut in_tag = false; + + while let Some(ch) = chars.next() { + if in_tag { + if ch == '>' { + in_tag = false; + // Add a space after closing tags to separate words + result.push(' '); + } + continue; + } + + if ch == '<' { + in_tag = true; + continue; + } + + // Skip markdown image syntax: ![alt](url) + if ch == '!' && chars.peek() == Some(&'[') { + // Consume ![...](...) entirely + chars.next(); // skip '[' + let mut depth = 1; + // Skip alt text + while let Some(c) = chars.next() { + if c == '[' { + depth += 1; + } + if c == ']' { + depth -= 1; + if depth == 0 { + break; + } + } + } + // Skip (url) if present + if chars.peek() == Some(&'(') { + chars.next(); + let mut depth = 1; + while let Some(c) = chars.next() { + if c == '(' { + depth += 1; + } + if c == ')' { + depth -= 1; + if depth == 0 { + break; + } + } + } + } + continue; + } + + // Markdown links: [text](url) — keep the text, skip the URL + if ch == '[' { + let mut link_text = String::new(); + let mut depth = 1; + while let Some(c) = chars.next() { + if c == '[' { + depth += 1; + } + if c == ']' { + depth -= 1; + if depth == 0 { + break; + } + } + link_text.push(c); + } + // Skip (url) if present + if chars.peek() == Some(&'(') { + chars.next(); + let mut depth = 1; + while let Some(c) = chars.next() { + if c == '(' { + depth += 1; + } + if c == ')' { + depth -= 1; + if depth == 0 { + break; + } + } + } + result.push_str(&link_text); + } else { + // Not a link, just brackets + result.push('['); + result.push_str(&link_text); + result.push(']'); + } + continue; + } + + // Strip bold/italic markers + if ch == '*' || ch == '_' { + // Skip consecutive * or _ + while chars.peek() == Some(&ch) { + chars.next(); + } + continue; + } + + // Strip strikethrough ~~ + if ch == '~' && chars.peek() == Some(&'~') { + chars.next(); + continue; + } + + // Strip inline code backticks + if ch == '`' { + while chars.peek() == Some(&'`') { + chars.next(); + } + continue; + } + + result.push(ch); + } + + // Collapse multiple spaces/newlines into single spaces + let mut collapsed = String::with_capacity(result.len()); + let mut last_was_space = false; + for ch in result.chars() { + if ch.is_whitespace() { + if !last_was_space { + collapsed.push(' '); + last_was_space = true; + } + } else { + collapsed.push(ch); + last_was_space = false; + } + } + + collapsed +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_extract_preview_basic() { + let content = + "## SIM Kaarten\n\n### Artjom\n\n**Telefoonnummer**\n\n**== 0456 74 49 91 ==**\n"; + let preview = extract_preview(content, 120); + eprintln!("Preview: {:?}", preview); + assert!(!preview.is_empty(), "Preview should not be empty"); + } + + #[test] + fn test_extract_preview_no_frontmatter() { + let content = "# Android flash\n\nAndroid flash\n\n[TWRP](https://twrp.me/)\n\nNotes;\n\n- Samsung S6\n"; + let preview = extract_preview(content, 120); + eprintln!("Preview: {:?}", preview); + assert!(!preview.is_empty(), "Preview should not be empty"); + } + + #[test] + fn test_strip_html_markdown() { + let input = "**Telefoonnummer**\n\n**== 0456 ==**"; + let stripped = strip_html_and_markdown(input); + eprintln!("Stripped: {:?}", stripped); + assert!(stripped.contains("Telefoonnummer")); + } +} diff --git a/src-tauri/src/vault/mod.rs b/src-tauri/src/vault/mod.rs new file mode 100644 index 0000000..8304fcb --- /dev/null +++ b/src-tauri/src/vault/mod.rs @@ -0,0 +1,3 @@ +pub mod frontmatter; +pub mod operations; +pub mod watcher; diff --git a/src-tauri/src/vault/operations.rs b/src-tauri/src/vault/operations.rs new file mode 100644 index 0000000..817a411 --- /dev/null +++ b/src-tauri/src/vault/operations.rs @@ -0,0 +1,677 @@ +use crate::types::{NoteContent, NoteEntry, NoteMeta, NotebookEntry, VaultState}; +use crate::vault::frontmatter; +use chrono::Utc; +use rayon::prelude::*; +use std::fs; +use std::io::Read; +use std::path::{Path, PathBuf}; +use uuid::Uuid; +use walkdir::WalkDir; + +pub fn helixnotes_dir(vault_path: &str) -> PathBuf { + Path::new(vault_path).join(".helixnotes") +} + +pub fn ensure_vault_structure(vault_path: &str) -> Result<(), String> { + let hn_dir = helixnotes_dir(vault_path); + fs::create_dir_all(hn_dir.join("trash")).map_err(|e| e.to_string())?; + fs::create_dir_all(hn_dir.join("attachments")).map_err(|e| e.to_string())?; + + let config_path = hn_dir.join("config.json"); + if !config_path.exists() { + let config = serde_json::json!({ + "version": "0.1.0", + "created": Utc::now().to_rfc3339() + }); + fs::write(&config_path, serde_json::to_string_pretty(&config).unwrap()) + .map_err(|e| e.to_string())?; + } + + let state_path = hn_dir.join("state.json"); + if !state_path.exists() { + let state = VaultState::default(); + fs::write(&state_path, serde_json::to_string_pretty(&state).unwrap()) + .map_err(|e| e.to_string())?; + } + + let gitignore_path = hn_dir.join(".gitignore"); + if !gitignore_path.exists() { + fs::write(&gitignore_path, "trash/\nindex.json\nstate.json\n") + .map_err(|e| e.to_string())?; + } + + Ok(()) +} + +pub fn scan_notebooks(vault_path: &str) -> Result, String> { + let root = Path::new(vault_path); + if !root.exists() { + return Err("Vault path does not exist".to_string()); + } + Ok(scan_dir_recursive(root, vault_path)) +} + +fn scan_dir_recursive(dir: &Path, vault_root: &str) -> Vec { + let mut entries = Vec::new(); + let root = Path::new(vault_root); + + let Ok(read_dir) = fs::read_dir(dir) else { + return entries; + }; + + let mut dirs: Vec<_> = read_dir + .filter_map(|e| e.ok()) + .filter(|e| { + let path = e.path(); + path.is_dir() && !is_hidden(&path) + }) + .collect(); + + dirs.sort_by(|a, b| { + a.file_name() + .to_string_lossy() + .to_lowercase() + .cmp(&b.file_name().to_string_lossy().to_lowercase()) + }); + + for dir_entry in dirs { + let path = dir_entry.path(); + let name = dir_entry.file_name().to_string_lossy().to_string(); + let relative = path + .strip_prefix(root) + .unwrap_or(&path) + .to_string_lossy() + .to_string(); + + let children = scan_dir_recursive(&path, vault_root); + let note_count = count_notes_in_dir(&path); + + entries.push(NotebookEntry { + name, + path: path.to_string_lossy().to_string(), + relative_path: relative, + children, + note_count, + }); + } + + entries +} + +fn count_notes_in_dir(dir: &Path) -> usize { + fs::read_dir(dir) + .map(|rd| { + rd.filter_map(|e| e.ok()) + .filter(|e| { + let path = e.path(); + path.is_file() && path.extension().and_then(|x| x.to_str()) == Some("md") + }) + .count() + }) + .unwrap_or(0) +} + +fn is_hidden(path: &Path) -> bool { + path.file_name() + .and_then(|n| n.to_str()) + .map(|n| n.starts_with('.')) + .unwrap_or(false) +} + +pub fn scan_notes(vault_path: &str, notebook_path: Option<&str>) -> Result, String> { + let scan_path = notebook_path.unwrap_or(vault_path); + let root = Path::new(scan_path); + let vault_root = Path::new(vault_path); + + if !root.exists() { + return Err("Path does not exist".to_string()); + } + + let md_files: Vec = if notebook_path.is_some() { + // Only direct children for a specific notebook + fs::read_dir(root) + .map_err(|e| e.to_string())? + .filter_map(|e| e.ok()) + .map(|e| e.path()) + .filter(|p| p.is_file() && p.extension().and_then(|x| x.to_str()) == Some("md")) + .collect() + } else { + // Recursive for "All Notes" + WalkDir::new(root) + .into_iter() + .filter_map(|e| e.ok()) + .filter(|e| !is_hidden(e.path()) && !e.path().starts_with(&helixnotes_dir(vault_path))) + .map(|e| e.path().to_path_buf()) + .filter(|p| p.is_file() && p.extension().and_then(|x| x.to_str()) == Some("md")) + .collect() + }; + + // Process files in parallel with partial reads + let mut notes: Vec = md_files + .par_iter() + .filter_map(|path| read_note_entry_fast(path, vault_root).ok()) + .collect(); + + notes.sort_by(|a, b| b.meta.modified.cmp(&a.meta.modified)); + Ok(notes) +} + +fn read_note_entry(path: &Path, vault_root: &Path) -> Result { + let raw = fs::read_to_string(path).map_err(|e| e.to_string())?; + read_note_entry_from_str(&raw, path, vault_root) +} + +/// Fast version: reads only the first ~2KB of the file (enough for frontmatter + preview). +fn read_note_entry_fast(path: &Path, vault_root: &Path) -> Result { + let mut file = fs::File::open(path).map_err(|e| e.to_string())?; + let mut buf = vec![0u8; 2048]; + let bytes_read = file.read(&mut buf).map_err(|e| e.to_string())?; + buf.truncate(bytes_read); + let raw = String::from_utf8_lossy(&buf); + read_note_entry_from_str(&raw, path, vault_root) +} + +fn read_note_entry_from_str( + raw: &str, + path: &Path, + vault_root: &Path, +) -> Result { + let filename = path + .file_name() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + + let (mut meta, content) = frontmatter::parse_note(raw, &filename); + + // Use filesystem times if frontmatter didn't have them + if let Ok(fs_meta) = fs::metadata(path) { + if let Ok(modified) = fs_meta.modified() { + meta.modified = modified.into(); + } + if let Ok(created) = fs_meta.created() { + meta.created = created.into(); + } + } + + let relative = path + .strip_prefix(vault_root) + .unwrap_or(path) + .to_string_lossy() + .to_string(); + + let preview = frontmatter::extract_preview(&content, 120); + + Ok(NoteEntry { + path: path.to_string_lossy().to_string(), + relative_path: relative, + meta, + preview, + }) +} + +pub fn read_note(path: &str) -> Result { + let p = Path::new(path); + let raw = fs::read_to_string(p).map_err(|e| e.to_string())?; + let filename = p + .file_name() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + + let (meta, content) = frontmatter::parse_note(&raw, &filename); + + Ok(NoteContent { + path: path.to_string(), + meta, + content, + raw, + }) +} + +pub fn save_note(path: &str, meta: &NoteMeta, body: &str) -> Result<(), String> { + let mut updated_meta = meta.clone(); + updated_meta.modified = Utc::now(); + + let raw = frontmatter::update_note_raw(&updated_meta, body); + fs::write(path, raw).map_err(|e| e.to_string())?; + Ok(()) +} + +pub fn create_note( + vault_path: &str, + notebook_relative: Option<&str>, + title: &str, +) -> Result { + let dir = match notebook_relative { + Some(rel) => Path::new(vault_path).join(rel), + None => PathBuf::from(vault_path), + }; + + if !dir.exists() { + return Err("Notebook directory does not exist".to_string()); + } + + let filename = sanitize_filename(title); + let mut file_path = dir.join(format!("{}.md", filename)); + + // Deduplicate filename + let mut counter = 1; + while file_path.exists() { + file_path = dir.join(format!("{} {}.md", filename, counter)); + counter += 1; + } + + let now = Utc::now(); + let meta = NoteMeta { + id: Uuid::new_v4().to_string(), + title: title.to_string(), + tags: Vec::new(), + pinned: false, + created: now, + modified: now, + }; + + let raw = frontmatter::update_note_raw(&meta, "\n"); + fs::write(&file_path, raw).map_err(|e| e.to_string())?; + + let vault_root = Path::new(vault_path); + let relative = file_path + .strip_prefix(vault_root) + .unwrap_or(&file_path) + .to_string_lossy() + .to_string(); + + Ok(NoteEntry { + path: file_path.to_string_lossy().to_string(), + relative_path: relative, + meta, + preview: String::new(), + }) +} + +pub fn create_notebook( + vault_path: &str, + parent_relative: Option<&str>, + name: &str, +) -> Result { + let parent = match parent_relative { + Some(rel) => Path::new(vault_path).join(rel), + None => PathBuf::from(vault_path), + }; + + let dir_path = parent.join(name); + if dir_path.exists() { + return Err("Notebook already exists".to_string()); + } + + fs::create_dir_all(&dir_path).map_err(|e| e.to_string())?; + + let vault_root = Path::new(vault_path); + let relative = dir_path + .strip_prefix(vault_root) + .unwrap_or(&dir_path) + .to_string_lossy() + .to_string(); + + Ok(NotebookEntry { + name: name.to_string(), + path: dir_path.to_string_lossy().to_string(), + relative_path: relative, + children: Vec::new(), + note_count: 0, + }) +} + +pub fn delete_note(vault_path: &str, note_path: &str) -> Result<(), String> { + let src = Path::new(note_path); + if !src.exists() { + return Err("Note does not exist".to_string()); + } + + let trash_dir = helixnotes_dir(vault_path).join("trash"); + fs::create_dir_all(&trash_dir).map_err(|e| e.to_string())?; + + let filename = src + .file_name() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + + let timestamp = Utc::now().format("%Y%m%d%H%M%S%3f"); + let trash_name = format!("{}_{}", timestamp, filename); + let dest = trash_dir.join(&trash_name); + + fs::rename(src, dest).map_err(|e| e.to_string())?; + Ok(()) +} + +pub fn delete_notebook(vault_path: &str, notebook_path: &str) -> Result<(), String> { + let src = Path::new(notebook_path); + if !src.exists() { + return Err("Notebook does not exist".to_string()); + } + + let trash_dir = helixnotes_dir(vault_path).join("trash"); + fs::create_dir_all(&trash_dir).map_err(|e| e.to_string())?; + + let dirname = src + .file_name() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + + let timestamp = Utc::now().format("%Y%m%d%H%M%S%3f"); + let trash_name = format!("{}_{}", timestamp, dirname); + let dest = trash_dir.join(&trash_name); + + fs::rename(src, dest).map_err(|e| e.to_string())?; + Ok(()) +} + +pub fn rename_note(path: &str, new_title: &str) -> Result { + let src = Path::new(path); + if !src.exists() { + return Err("Note does not exist".to_string()); + } + + // Update frontmatter + let raw = fs::read_to_string(src).map_err(|e| e.to_string())?; + let filename = src + .file_name() + .unwrap_or_default() + .to_string_lossy() + .to_string(); + let (mut meta, content) = frontmatter::parse_note(&raw, &filename); + meta.title = new_title.to_string(); + meta.modified = Utc::now(); + let updated = frontmatter::update_note_raw(&meta, &content); + + // Rename file + let new_filename = sanitize_filename(new_title); + let new_path = src.parent().unwrap().join(format!("{}.md", new_filename)); + fs::write(src, &updated).map_err(|e| e.to_string())?; + + if new_path != src { + fs::rename(src, &new_path).map_err(|e| e.to_string())?; + } + + Ok(new_path.to_string_lossy().to_string()) +} + +pub fn rename_notebook(path: &str, new_name: &str) -> Result { + let src = Path::new(path); + if !src.exists() { + return Err("Notebook does not exist".to_string()); + } + + let new_path = src.parent().unwrap().join(new_name); + if new_path.exists() { + return Err("A notebook with that name already exists".to_string()); + } + + fs::rename(src, &new_path).map_err(|e| e.to_string())?; + Ok(new_path.to_string_lossy().to_string()) +} + +pub fn move_note(note_path: &str, dest_notebook: &str) -> Result { + let src = Path::new(note_path); + if !src.exists() { + return Err("Note does not exist".to_string()); + } + + let dest_dir = Path::new(dest_notebook); + if !dest_dir.is_dir() { + return Err("Destination notebook does not exist".to_string()); + } + + let filename = src.file_name().unwrap_or_default(); + let dest = dest_dir.join(filename); + + fs::rename(src, &dest).map_err(|e| e.to_string())?; + Ok(dest.to_string_lossy().to_string()) +} + +pub fn get_trash_notes(vault_path: &str) -> Result, String> { + let trash_dir = helixnotes_dir(vault_path).join("trash"); + if !trash_dir.exists() { + return Ok(Vec::new()); + } + + let vault_root = Path::new(vault_path); + let mut notes = Vec::new(); + + for entry in fs::read_dir(&trash_dir).map_err(|e| e.to_string())? { + let entry = entry.map_err(|e| e.to_string())?; + let path = entry.path(); + if path.is_file() && path.extension().and_then(|x| x.to_str()) == Some("md") { + if let Ok(note) = read_note_entry(&path, vault_root) { + notes.push(note); + } + } + } + + notes.sort_by(|a, b| b.meta.modified.cmp(&a.meta.modified)); + Ok(notes) +} + +pub fn restore_note( + vault_path: &str, + trash_path: &str, + dest_notebook: Option<&str>, +) -> Result { + let src = Path::new(trash_path); + if !src.exists() { + return Err("Trashed note does not exist".to_string()); + } + + let dest_dir = match dest_notebook { + Some(nb) => PathBuf::from(nb), + None => PathBuf::from(vault_path), + }; + + // Strip timestamp prefix from trash filename (17-char with millis or 14-char legacy) + let filename = src.file_name().unwrap_or_default().to_string_lossy(); + let original_name = if filename.len() > 18 && filename.chars().nth(17) == Some('_') { + &filename[18..] + } else if filename.len() > 15 && filename.chars().nth(14) == Some('_') { + &filename[15..] + } else { + &filename + }; + + let dest = dest_dir.join(original_name); + fs::rename(src, &dest).map_err(|e| e.to_string())?; + Ok(dest.to_string_lossy().to_string()) +} + +pub fn permanent_delete(path: &str) -> Result<(), String> { + let p = Path::new(path); + if p.is_dir() { + fs::remove_dir_all(p).map_err(|e| e.to_string())?; + } else { + fs::remove_file(p).map_err(|e| e.to_string())?; + } + Ok(()) +} + +pub fn empty_trash(vault_path: &str) -> Result<(), String> { + let trash_dir = helixnotes_dir(vault_path).join("trash"); + if trash_dir.exists() { + fs::remove_dir_all(&trash_dir).map_err(|e| e.to_string())?; + fs::create_dir_all(&trash_dir).map_err(|e| e.to_string())?; + } + Ok(()) +} + +pub fn load_vault_state(vault_path: &str) -> Result { + let state_path = helixnotes_dir(vault_path).join("state.json"); + if state_path.exists() { + let data = fs::read_to_string(&state_path).map_err(|e| e.to_string())?; + serde_json::from_str(&data).map_err(|e| e.to_string()) + } else { + Ok(VaultState::default()) + } +} + +pub fn save_vault_state(vault_path: &str, state: &VaultState) -> Result<(), String> { + let state_path = helixnotes_dir(vault_path).join("state.json"); + let data = serde_json::to_string_pretty(state).map_err(|e| e.to_string())?; + fs::write(&state_path, data).map_err(|e| e.to_string())?; + Ok(()) +} + +pub fn get_all_tags(vault_path: &str) -> Result, String> { + let hn_dir = helixnotes_dir(vault_path); + let md_files: Vec = WalkDir::new(vault_path) + .into_iter() + .filter_map(|e| e.ok()) + .filter(|e| { + let p = e.path(); + p.is_file() + && p.extension().and_then(|x| x.to_str()) == Some("md") + && !is_hidden(p) + && !p.starts_with(&hn_dir) + }) + .map(|e| e.path().to_path_buf()) + .collect(); + + // Read frontmatter in parallel (only need tags, so partial read is fine) + let all_tags: Vec> = md_files + .par_iter() + .filter_map(|path| { + let mut file = fs::File::open(path).ok()?; + let mut buf = vec![0u8; 1024]; // Tags are in frontmatter, 1KB is plenty + let n = file.read(&mut buf).ok()?; + buf.truncate(n); + let raw = String::from_utf8_lossy(&buf); + let filename = path.file_name()?.to_string_lossy().to_string(); + let (meta, _) = frontmatter::parse_note(&raw, &filename); + Some(meta.tags) + }) + .collect(); + + let mut tag_counts: std::collections::HashMap = std::collections::HashMap::new(); + for tags in all_tags { + for tag in tags { + *tag_counts.entry(tag).or_insert(0) += 1; + } + } + + let mut tags: Vec<(String, usize)> = tag_counts.into_iter().collect(); + tags.sort_by(|a, b| b.1.cmp(&a.1).then(a.0.cmp(&b.0))); + Ok(tags) +} + +pub fn save_image(vault_path: &str, name: &str, data: &[u8]) -> Result { + save_attachment(vault_path, name, data) +} + +pub fn save_attachment(vault_path: &str, name: &str, data: &[u8]) -> Result { + let attachments_dir = helixnotes_dir(vault_path).join("attachments"); + fs::create_dir_all(&attachments_dir).map_err(|e| e.to_string())?; + + let timestamp = Utc::now().format("%Y%m%d%H%M%S"); + let safe_name = sanitize_filename(name); + let filename = format!("{}_{}", timestamp, safe_name); + let dest = attachments_dir.join(&filename); + + fs::write(&dest, data).map_err(|e| e.to_string())?; + + // Return relative path from vault root + let relative = format!(".helixnotes/attachments/{}", filename); + Ok(relative) +} + +pub fn load_notebook_icons( + vault_path: &str, +) -> Result, String> { + let icons_path = helixnotes_dir(vault_path).join("notebook_icons.json"); + if icons_path.exists() { + let data = fs::read_to_string(&icons_path).map_err(|e| e.to_string())?; + serde_json::from_str(&data).map_err(|e| e.to_string()) + } else { + Ok(std::collections::HashMap::new()) + } +} + +pub fn set_notebook_icon( + vault_path: &str, + notebook_relative: &str, + icon_relative: Option<&str>, +) -> Result<(), String> { + let mut icons = load_notebook_icons(vault_path)?; + match icon_relative { + Some(icon) => { + icons.insert(notebook_relative.to_string(), icon.to_string()); + } + None => { + icons.remove(notebook_relative); + } + } + let icons_path = helixnotes_dir(vault_path).join("notebook_icons.json"); + let data = serde_json::to_string_pretty(&icons).map_err(|e| e.to_string())?; + fs::write(&icons_path, data).map_err(|e| e.to_string())?; + Ok(()) +} + +pub fn load_quick_access(vault_path: &str) -> Result, String> { + let qa_path = helixnotes_dir(vault_path).join("quick_access.json"); + if qa_path.exists() { + let data = fs::read_to_string(&qa_path).map_err(|e| e.to_string())?; + serde_json::from_str(&data).map_err(|e| e.to_string()) + } else { + Ok(Vec::new()) + } +} + +pub fn save_quick_access(vault_path: &str, paths: &[String]) -> Result<(), String> { + let qa_path = helixnotes_dir(vault_path).join("quick_access.json"); + let data = serde_json::to_string_pretty(paths).map_err(|e| e.to_string())?; + fs::write(&qa_path, data).map_err(|e| e.to_string())?; + Ok(()) +} + +pub fn add_quick_access(vault_path: &str, note_relative: &str) -> Result<(), String> { + let mut list = load_quick_access(vault_path)?; + if !list.contains(¬e_relative.to_string()) { + list.push(note_relative.to_string()); + save_quick_access(vault_path, &list)?; + } + Ok(()) +} + +pub fn remove_quick_access(vault_path: &str, note_relative: &str) -> Result<(), String> { + let mut list = load_quick_access(vault_path)?; + list.retain(|p| p != note_relative); + save_quick_access(vault_path, &list)?; + Ok(()) +} + +pub fn get_quick_access_notes(vault_path: &str) -> Result, String> { + let list = load_quick_access(vault_path)?; + let vault_root = Path::new(vault_path); + let mut notes = Vec::new(); + + for relative in &list { + let full_path = vault_root.join(relative); + if full_path.exists() { + if let Ok(entry) = read_note_entry(&full_path, vault_root) { + notes.push(entry); + } + } + } + + Ok(notes) +} + +pub fn sanitize_filename(name: &str) -> String { + name.chars() + .map(|c| match c { + '/' | '\\' | ':' | '*' | '?' | '"' | '<' | '>' | '|' => '-', + _ => c, + }) + .collect::() + .trim() + .to_string() +} diff --git a/src-tauri/src/vault/watcher.rs b/src-tauri/src/vault/watcher.rs new file mode 100644 index 0000000..2338d7d --- /dev/null +++ b/src-tauri/src/vault/watcher.rs @@ -0,0 +1,73 @@ +use notify::{Config, EventKind, RecommendedWatcher, RecursiveMode, Watcher}; +use std::path::Path; +use std::sync::mpsc; +use std::time::Duration; +use tauri::{AppHandle, Emitter, Manager}; + +use crate::state::AppState; +use crate::types::FileEvent; +use crate::vault::operations::helixnotes_dir; + +pub fn start_watcher(app: AppHandle, vault_path: String) -> Result { + let (tx, rx) = mpsc::channel(); + + let mut watcher = RecommendedWatcher::new( + tx, + Config::default().with_poll_interval(Duration::from_secs(1)), + ) + .map_err(|e| e.to_string())?; + + watcher + .watch(Path::new(&vault_path), RecursiveMode::Recursive) + .map_err(|e| e.to_string())?; + + let hn_dir = helixnotes_dir(&vault_path); + + std::thread::spawn(move || { + while let Ok(result) = rx.recv() { + match result { + Ok(event) => { + // Skip all file events while importing + let state = app.state::(); + if state.importing.load(std::sync::atomic::Ordering::Relaxed) { + continue; + } + // Skip .helixnotes directory events + let dominated_by_hn = event.paths.iter().all(|p| p.starts_with(&hn_dir)); + if dominated_by_hn { + continue; + } + + // Only care about .md file events + let has_md = event.paths.iter().any(|p| { + p.extension().and_then(|x| x.to_str()) == Some("md") || p.is_dir() + }); + + if !has_md { + continue; + } + + let event_type = match event.kind { + EventKind::Create(_) => "create", + EventKind::Modify(_) => "modify", + EventKind::Remove(_) => "remove", + _ => continue, + }; + + for path in &event.paths { + let fe = FileEvent { + event_type: event_type.to_string(), + path: path.to_string_lossy().to_string(), + }; + let _ = app.emit("file-changed", &fe); + } + } + Err(e) => { + log::error!("File watcher error: {}", e); + } + } + } + }); + + Ok(watcher) +} diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json new file mode 100644 index 0000000..2aa09ed --- /dev/null +++ b/src-tauri/tauri.conf.json @@ -0,0 +1,60 @@ +{ + "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", + "productName": "HelixNotes", + "version": "1.0.0", + "identifier": "com.helixnotes.app", + "build": { + "frontendDist": "../build", + "devUrl": "http://localhost:5173", + "beforeDevCommand": "pnpm dev", + "beforeBuildCommand": "pnpm build" + }, + "app": { + "windows": [ + { + "title": "HelixNotes", + "label": "main", + "width": 1200, + "height": 800, + "minWidth": 800, + "minHeight": 500, + "resizable": true, + "fullscreen": false, + "decorations": false + } + ], + "security": { + "csp": "default-src 'self' 'unsafe-inline' 'unsafe-eval'; img-src 'self' asset: http://asset.localhost blob: data:; font-src 'self' data:; style-src 'self' 'unsafe-inline'", + "assetProtocol": { + "enable": true, + "scope": ["**/*", "/**", "**/.helixnotes/**"] + } + } + }, + "plugins": { + "updater": { + "endpoints": ["https://helixnotes.com/latest.json"], + "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEFEODY0N0JDRjFEOTVGQTEKUldTaFg5bnh2RWVHclFEcW4wdjB2cWg0TWZNRkRxZThMYnZEV0pKV09YK1ZxcHBYOUJwT1pGT3UK" + } + }, + "bundle": { + "active": true, + "targets": "all", + "createUpdaterArtifacts": "v1Compatible", + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ], + "linux": { + "deb": { + "depends": [] + }, + "appimage": { + "bundleMediaFramework": false + } + } + } +} diff --git a/src/app.css b/src/app.css new file mode 100644 index 0000000..5a60f85 --- /dev/null +++ b/src/app.css @@ -0,0 +1,151 @@ +@import "tailwindcss"; + +@font-face { + font-family: "Inter"; + src: local("Inter"); +} + +:root { + /* Light theme */ + --bg-primary: #ffffff; + --bg-secondary: #f8f9fa; + --bg-tertiary: #f0f1f3; + --bg-hover: #e9ecef; + --bg-active: #dde1e6; + --bg-editor: #ffffff; + --text-primary: #1a1a2e; + --text-secondary: #495057; + --text-tertiary: #868e96; + --text-accent: #5b6abf; + --border-color: #e2e5e9; + --border-light: #f0f1f3; + --accent: #5b6abf; + --accent-hover: #4a59b0; + --accent-light: #eef0f9; + --danger: #e55353; + --danger-hover: #d43d3d; + --success: #40c057; + --warning: #fab005; + --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05); + --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08); + --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12); + --sidebar-width: 220px; + --notelist-width: 280px; + --panel-resize-handle: 4px; +} + +:root.dark { + --bg-primary: #1a1b26; + --bg-secondary: #1f2029; + --bg-tertiary: #24253a; + --bg-hover: #2a2b3d; + --bg-active: #33354a; + --bg-editor: #1a1b26; + --text-primary: #cdd6f4; + --text-secondary: #a6adc8; + --text-tertiary: #6c7086; + --text-accent: #89b4fa; + --border-color: #2a2b3d; + --border-light: #24253a; + --accent: #89b4fa; + --accent-hover: #74a8f7; + --accent-light: #1e2640; + --danger: #f38ba8; + --danger-hover: #eba0ac; + --success: #a6e3a1; + --warning: #f9e2af; + --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2); + --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3); + --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4); +} + +*, +*::before, +*::after { + margin: 0; + padding: 0; + box-sizing: border-box; + -webkit-user-select: none !important; + user-select: none !important; +} + +html, +body { + height: 100%; + overflow: hidden; + font-family: var( + --editor-font-family, + "Inter", + -apple-system, + BlinkMacSystemFont, + "Segoe UI", + sans-serif + ); + background: var(--bg-primary); + color: var(--text-primary); + font-size: var(--editor-font-size, 14px); + line-height: 1.5; + -webkit-font-smoothing: antialiased; + user-select: none; +} + +/* Scrollbar styling */ +::-webkit-scrollbar { + width: 6px; + height: 6px; +} + +::-webkit-scrollbar-track { + background: transparent; +} + +::-webkit-scrollbar-thumb { + background: var(--text-tertiary); + border-radius: 3px; +} + +::-webkit-scrollbar-thumb:hover { + background: var(--text-secondary); +} + +/* Selection */ +::selection { + background: var(--accent); + color: white; +} + +/* Focus ring */ +:focus-visible { + outline: 2px solid var(--accent); + outline-offset: -2px; +} + +/* Allow text selection in editor and source view */ +.editor-content, +.editor-content *, +.source-editor { + -webkit-user-select: text !important; + user-select: text !important; +} + +/* Transitions */ +.transition-colors { + transition: + color 0.15s ease, + background-color 0.15s ease, + border-color 0.15s ease; +} + +/* Panel resize handle */ +.resize-handle { + width: var(--panel-resize-handle); + cursor: col-resize; + background: var(--border-color); + transition: background 0.15s ease; + flex-shrink: 0; +} + +.resize-handle:hover, +.resize-handle.active { + background: var(--accent); +} diff --git a/src/app.d.ts b/src/app.d.ts new file mode 100644 index 0000000..da08e6d --- /dev/null +++ b/src/app.d.ts @@ -0,0 +1,13 @@ +// See https://svelte.dev/docs/kit/types#app.d.ts +// for information about these interfaces +declare global { + namespace App { + // interface Error {} + // interface Locals {} + // interface PageData {} + // interface PageState {} + // interface Platform {} + } +} + +export {}; diff --git a/src/app.html b/src/app.html new file mode 100644 index 0000000..f273cc5 --- /dev/null +++ b/src/app.html @@ -0,0 +1,11 @@ + + + + + + %sveltekit.head% + + +

+ + diff --git a/src/lib/api.ts b/src/lib/api.ts new file mode 100644 index 0000000..ba03ed1 --- /dev/null +++ b/src/lib/api.ts @@ -0,0 +1,309 @@ +import { invoke } from "@tauri-apps/api/core"; +import type { + AppConfig, + NoteContent, + NoteEntry, + NoteMeta, + NotebookEntry, + NoteTitleEntry, + SearchResult, + VaultState, + VaultStats, + ImportResult, + BackupEntry, + VersionEntry, +} from "./types"; + +export async function openVault(path: string): Promise { + return invoke("open_vault", { path }); +} + +export async function getAppConfig(): Promise { + return invoke("get_app_config"); +} + +export async function setTheme(theme: string): Promise { + return invoke("set_theme", { theme }); +} + +export async function setAccentColor(color: string): Promise { + return invoke("set_accent_color", { color }); +} + +export async function setFontSize(size: number): Promise { + return invoke("set_font_size", { size }); +} + +export async function setFontFamily(family: string): Promise { + return invoke("set_font_family", { family }); +} + +export async function getNotebooks(): Promise { + return invoke("get_notebooks"); +} + +export async function createNotebook( + parentRelative: string | null, + name: string, +): Promise { + return invoke("create_notebook", { parentRelative, name }); +} + +export async function renameNotebook( + path: string, + newName: string, +): Promise { + return invoke("rename_notebook", { path, newName }); +} + +export async function deleteNotebook(path: string): Promise { + return invoke("delete_notebook", { path }); +} + +export async function getNotes( + notebookPath: string | null, +): Promise { + return invoke("get_notes", { notebookPath }); +} + +export async function readNote(path: string): Promise { + return invoke("read_note", { path }); +} + +export async function saveNote( + path: string, + meta: NoteMeta, + body: string, +): Promise { + return invoke("save_note", { path, meta, body }); +} + +export async function createNote( + notebookRelative: string | null, + title: string, +): Promise { + return invoke("create_note", { notebookRelative, title }); +} + +export async function renameNote( + path: string, + newTitle: string, +): Promise { + return invoke("rename_note", { path, newTitle }); +} + +export async function deleteNote(path: string): Promise { + return invoke("delete_note", { path }); +} + +export async function moveNote( + notePath: string, + destNotebook: string, +): Promise { + return invoke("move_note", { notePath, destNotebook }); +} + +export async function getAllTags(): Promise<[string, number][]> { + return invoke("get_all_tags"); +} + +export async function getAllNoteTitles(): Promise { + return invoke("get_all_note_titles"); +} + +export async function searchNotes( + query: string, + limit?: number, +): Promise { + return invoke("search_notes", { query, limit }); +} + +export async function reindex(): Promise { + return invoke("reindex"); +} + +export async function getTrash(): Promise { + return invoke("get_trash"); +} + +export async function restoreNote( + trashPath: string, + destNotebook: string | null, +): Promise { + return invoke("restore_note", { trashPath, destNotebook }); +} + +export async function permanentDelete(path: string): Promise { + return invoke("permanent_delete", { path }); +} + +export async function emptyTrash(): Promise { + return invoke("empty_trash"); +} + +export async function loadVaultState(): Promise { + return invoke("load_vault_state"); +} + +export async function saveVaultState(vaultState: VaultState): Promise { + return invoke("save_vault_state", { vaultState }); +} + +export async function saveImage(name: string, data: number[]): Promise { + return invoke("save_image", { name, data }); +} + +export async function saveAttachment( + name: string, + data: number[], +): Promise { + return invoke("save_attachment", { name, data }); +} + +export async function getNotebookIcons(): Promise> { + return invoke("get_notebook_icons"); +} + +export async function setNotebookIcon( + notebookRelative: string, + iconRelative: string | null, +): Promise { + return invoke("set_notebook_icon", { notebookRelative, iconRelative }); +} + +export async function setGeneralSettings( + compactNotes: boolean, + timeFormat: string, + gpuAcceleration: boolean, + autostart: boolean, + pdfPreview: boolean, + pdfHeight: number, + titleMode: string, + hideTitleInBody: boolean, + defaultViewMode: boolean, + showTrayIcon: boolean, + enableWikiLinks: boolean, +): Promise { + return invoke("set_general_settings", { + compactNotes, + timeFormat, + gpuAcceleration, + autostart, + pdfPreview, + pdfHeight, + titleMode, + hideTitleInBody, + defaultViewMode, + showTrayIcon, + enableWikiLinks, + }); +} + +export async function getQuickAccess(): Promise { + return invoke("get_quick_access"); +} + +export async function addQuickAccess(noteRelative: string): Promise { + return invoke("add_quick_access", { noteRelative }); +} + +export async function removeQuickAccess(noteRelative: string): Promise { + return invoke("remove_quick_access", { noteRelative }); +} + +export async function getVaultStats(): Promise { + return invoke("get_vault_stats"); +} + +export async function importObsidian(): Promise { + return invoke("import_obsidian"); +} + +export async function openFile(path: string): Promise { + return invoke("open_file", { path }); +} + +export async function copyFileTo( + source: string, + destination: string, +): Promise { + return invoke("copy_file_to", { source, destination }); +} + +// ── Backup ── + +export async function createBackup(): Promise { + return invoke("create_backup"); +} + +export async function listBackups(): Promise { + return invoke("list_backups"); +} + +export async function restoreBackup(backupPath: string): Promise { + return invoke("restore_backup", { backupPath }); +} + +export async function deleteBackup(backupPath: string): Promise { + return invoke("delete_backup", { backupPath }); +} + +export async function setBackupSettings( + enabled: boolean, + frequency: string, + maxCount: number, + location: string | null, + includeAttachments: boolean, +): Promise { + return invoke("set_backup_settings", { + enabled, + frequency, + maxCount, + location, + includeAttachments, + }); +} + +// ── Version History ── + +export async function getNoteVersions(noteId: string): Promise { + return invoke("get_note_versions", { noteId }); +} + +export async function getNoteVersionContent( + noteId: string, + timestamp: string, +): Promise { + return invoke("get_note_version_content", { noteId, timestamp }); +} + +export async function createVersion( + path: string, + noteId: string, +): Promise { + return invoke("create_version", { path, noteId }); +} + +// ── AI ── + +export async function setAiSettings( + provider: string | null, + apiKey: string | null, + model: string, + writingStyle: string | null, +): Promise { + return invoke("set_ai_settings", { provider, apiKey, model, writingStyle }); +} + +export async function testAiConnection(): Promise { + return invoke("test_ai_connection"); +} + +export async function aiAsk( + action: string, + text: string, + customPrompt: string | null, + requestId: string, +): Promise { + return invoke("ai_ask", { action, text, customPrompt, requestId }); +} diff --git a/src/lib/assets/favicon.svg b/src/lib/assets/favicon.svg new file mode 100644 index 0000000..cc5dc66 --- /dev/null +++ b/src/lib/assets/favicon.svg @@ -0,0 +1 @@ +svelte-logo \ No newline at end of file diff --git a/src/lib/components/AppLayout.svelte b/src/lib/components/AppLayout.svelte new file mode 100644 index 0000000..aa9af0d --- /dev/null +++ b/src/lib/components/AppLayout.svelte @@ -0,0 +1,288 @@ + + + + +
+ {#if $focusMode} + +
{ if (!(e.target as HTMLElement).closest('button')) appWindow.startDragging(); }}> + {$activeNote?.meta.title || 'Untitled'} +
+ + + + +
+
+ {:else} + + {/if} +
+ {#if !$focusMode} + + + {#if !$sidebarCollapsed} + + {/if} + +
+ sidebar?.refresh()} /> +
+ + + {/if} + +
+ +
+
+
+ + + + + + + diff --git a/src/lib/components/CommandPalette.svelte b/src/lib/components/CommandPalette.svelte new file mode 100644 index 0000000..47ef31d --- /dev/null +++ b/src/lib/components/CommandPalette.svelte @@ -0,0 +1,229 @@ + + +{#if $showCommandPalette} + +
($showCommandPalette = false)} onkeydown={handleKeydown}> + +
e.stopPropagation()} onkeydown={(e) => e.stopPropagation()}> +
+ + + + +
+ +
+ {#each filteredCommands as cmd, i (cmd.id)} + + {/each} +
+
+
+{/if} + + diff --git a/src/lib/components/Editor.svelte b/src/lib/components/Editor.svelte new file mode 100644 index 0000000..b71edff --- /dev/null +++ b/src/lib/components/Editor.svelte @@ -0,0 +1,5092 @@ + + +
+ {#if !$activeNote} +
+
+ + + + +
+

Select a note or create a new one

+
+ Ctrl+N New note + Ctrl+P Quick open +
+
+ {:else} +
+
+ { + if (e.key === 'Tab') { + e.preventDefault(); + editor?.commands.focus('start'); + } + if (e.key === 'Enter') { + e.preventDefault(); + editor?.commands.focus('start'); + } + }} + onchange={(e) => { + if ($activeNote) { + const newTitle = (e.target as HTMLInputElement).value; + $activeNote.meta.title = newTitle; + // Update the note list entry so the 2nd panel reflects the change + notes.update(list => list.map(n => + n.path === $activeNotePath ? { ...n, meta: { ...n.meta, title: newTitle } } : n + )); + $editorDirty = true; + autoSave(); + } + }} + /> +
+
+ {#if $editorDirty} + Unsaved + {/if} + {#if readOnly} + View Mode + {/if} + + + + + {#if $appConfig?.enable_wiki_links} + + {/if} + {#if $appConfig?.ai_provider && ($appConfig?.ai_api_key || $appConfig?.openai_api_key)} + + {/if} + +
+
+ +
+
+ {#if $sourceMode} + + {:else} + +
{ closeLinkContextMenu(); handleEditorClick(e); }} oncontextmenu={handleEditorContextMenu} onkeydown={(e) => { + if (readOnly && !e.ctrlKey && !e.metaKey && !e.altKey && e.key.length === 1) { + readOnlyFlash = true; + setTimeout(() => { readOnlyFlash = false; }, 600); + } + }}>
+ {/if} +
+ + {#if showHistory} +
+
+

Version History

+
+ + +
+
+ {#if historyLoading} +
Loading...
+ {:else if historyVersions.length === 0} +
No versions yet. Versions are created automatically as you edit (at least 5 minutes apart).
+ {:else} +
+ {#each historyVersions as v} + + {/each} +
+ {/if} + {#if historySelected && historyPreview !== null} +
+ +
+ {/if} +
+ {/if} +
+ + {#if editorReady && !$sourceMode} + +
{ headingDropdown = false; colorDropdown = false; highlightDropdown = false; tablePickerOpen = false; alignDropdown = false; insertDropdown = false; }}> + +
+ + {#if insertDropdown} + +
e.stopPropagation()}> + + + + + + + +
+ {/if} +
+ +
+ + +
+ + {#if headingDropdown} + +
e.stopPropagation()}> + + + + + +
+ {/if} +
+ +
+ + + + + + + + +
+ + {#if colorDropdown} + +
e.stopPropagation()}> + {#each textColors as color} + + {/each} +
+ {/if} +
+ +
+ + + + +
+ + + + + + +
+ + + + + +
+ + + + + + + + + + + + +
+ + {#if tablePickerOpen} + +
e.stopPropagation()}> +
+ {#each Array(8) as _, r} + {#each Array(10) as _, c} + +
tablePickerHover = { rows: r + 1, cols: c + 1 }} + onclick={() => insertTable(r + 1, c + 1)} + >
+ {/each} + {/each} +
+
+ {tablePickerHover.rows > 0 ? `${tablePickerHover.rows} x ${tablePickerHover.cols}` : 'Select size'} +
+
+ {/if} +
+ + + + +
+ + +
+ + {#if highlightDropdown} + +
e.stopPropagation()}> + {#each highlightColors as color} + + {/each} + +
+ {/if} +
+ + + + + +
+ + +
+ + {#if alignDropdown} + +
e.stopPropagation()}> + + + + +
+ {/if} +
+ +
+ + + + +
+ {/if} + {/if} + + + { + const file = (e.target as HTMLInputElement).files?.[0]; + if (file) insertImage(file); + (e.target as HTMLInputElement).value = ''; + }} /> + { + const file = (e.target as HTMLInputElement).files?.[0]; + if (file) { + if (file.type.startsWith('image/')) insertImage(file); + else if (file.type === 'application/pdf') insertPdf(file); + else insertFileAttachment(file); + } + (e.target as HTMLInputElement).value = ''; + }} /> +
+ +{#if linkContextMenu} + + +{/if} + +{#if textContextMenu} + +
+ +
e.stopPropagation()}> + + + +
+ +
+ +
ctxHeadingSubmenu = true} onmouseleave={() => ctxHeadingSubmenu = false}> + + {#if ctxHeadingSubmenu} +
+ + + + +
+ +
+ {/if} +
+
+ + + + + +
+ + + + + +
+ + + + {#if $appConfig?.ai_provider && ($appConfig?.ai_api_key || $appConfig?.openai_api_key)} +
+ + {/if} +
+
+{/if} + +{#if tableContextMenu} + +
+ +
e.stopPropagation()}> + + + +
+ + + +
+ + +
+ + +
+
Cell Color
+
+ {#each cellColors as color} + + {/each} +
+
+ +
+
+{/if} + +{#if imageToolbar} + +
(imageToolbar = null)}> + +
e.stopPropagation()}> + + + +
+
+{/if} + +{#if codeLangDropdown} + +
+ +
e.stopPropagation()}> + + {#each codeLanguages as lang} + + {/each} +
+
+{/if} + +{#if slashMenu} + +
+ +
e.stopPropagation()}> + {#if slashTablePicker} +
+
+ {#each Array(8) as _, r} + {#each Array(10) as _, c} + +
slashTableHover = { rows: r + 1, cols: c + 1 }} + onmousedown={(e) => { e.preventDefault(); slashInsertTable(r + 1, c + 1); }} + >
+ {/each} + {/each} +
+
+ {slashTableHover.rows > 0 ? `${slashTableHover.rows} x ${slashTableHover.cols}` : 'Select table size'} +
+
+ {:else if slashFiltered.length === 0} +
No matching commands
+ {:else} + {#each slashFiltered as cmd, i} + + {/each} + {/if} +
+
+{/if} + +{#if wikiLinkMenu} + + +{/if} + +{#if aiMenu} + +
+ +
e.stopPropagation()}> + {#if aiResult !== null || aiLoading} + +
+ + {#if aiLoading} + + Generating... + {:else} + AI Result + {/if} + + +
+ {#if aiError} +
{aiError}
+ {:else} +
{aiResult}
+ {/if} + {#if !aiLoading && aiResult && !aiError} +
+ + +
+ {/if} + {:else if aiShowCustom} + +
+ + Custom Prompt +
+
+ + +
+ {:else if aiTranslateMenu} + +
+ + Translate to +
+ + + + + + {:else if aiEmptyNote} + +
Generate Note
+
+ + +
+ {:else} + +
{aiWholeNote ? 'AI Actions (Entire Note)' : 'AI Actions'}
+ + + + +
+ + +
+ + + +
+ + {/if} +
+
+{/if} + +{#if linkModal} + + +{/if} + +{#if showGraph} + showGraph = false} onnavigate={(path, title) => { showGraph = false; navigateToWikiLink(path, title); }} /> +{/if} + + diff --git a/src/lib/components/GraphView.svelte b/src/lib/components/GraphView.svelte new file mode 100644 index 0000000..daa794b --- /dev/null +++ b/src/lib/components/GraphView.svelte @@ -0,0 +1,522 @@ + + + +
+
+
+

Graph View

+
+ {#if !loading} + {nodes.length} notes, {edges.length} connections + {/if} +
+ +
+
+ {#if loading} +
+ + + + + Building graph... +
+ {/if} + + +
+
+
+ + diff --git a/src/lib/components/InfoPanel.svelte b/src/lib/components/InfoPanel.svelte new file mode 100644 index 0000000..49f064b --- /dev/null +++ b/src/lib/components/InfoPanel.svelte @@ -0,0 +1,388 @@ + + +{#if $showInfo} + +
{ if (e.key === 'Escape') close(); }}> + +
e.stopPropagation()}> +
+

Info

+ +
+ +
+
+ + +
+ + {#if activeTab === 'about'} + +

HelixNotes

+

v1.0.0

+

A local-first markdown note-taking app.

+ + {#if stats} +
+
+ Notes + {stats.total_notes} +
+
+ Attachments + {stats.total_attachments} +
+
+ Notes size + {formatSize(stats.notes_size)} +
+
+ Attachments size + {formatSize(stats.attachments_size)} +
+
+ Total vault size + {formatSize(stats.total_size)} +
+
+ {/if} + +
+

Created by Yuri Karamian

+ +
+ {:else} +
+

Keyboard Shortcuts

+
New noteCtrl+N
+
Quick openCtrl+P
+
SearchCtrl+F
+
SaveCtrl+S
+
BoldCtrl+B
+
ItalicCtrl+I
+
UnderlineCtrl+U
+
UndoCtrl+Z
+
RedoCtrl+Shift+Z
+
Exit focus modeEsc
+ +

Editor Commands

+
Slash commands/
+
Headings, lists, code block, table, blockquote, collapsible section, horizontal rule
+
Wiki-link to note[[
+
Type [[ to search and link to another note. Close with ]] or pick from the list.
+ +

Editor Features

+
Right-click in editor for formatting menu
+
Right-click a table cell for table options
+
Right-click a link to open, copy, edit, or remove
+
Click an image to resize (small / medium / full)
+
Drag & drop images, PDFs, or files into the editor
+
+ {/if} +
+
+
+{/if} + + diff --git a/src/lib/components/NoteList.svelte b/src/lib/components/NoteList.svelte new file mode 100644 index 0000000..72f28a9 --- /dev/null +++ b/src/lib/components/NoteList.svelte @@ -0,0 +1,1136 @@ + + + { + if (e.key === 'Escape' && selectedPaths.size > 0) { + clearSelection(); + } + if ((e.ctrlKey || e.metaKey) && e.key === 'a' && $sortedNotes.length > 0) { + // Only select all if focus is not in an input/editor + const tag = (e.target as HTMLElement)?.tagName; + if (tag !== 'INPUT' && tag !== 'TEXTAREA' && !(e.target as HTMLElement)?.closest('.ProseMirror')) { + e.preventDefault(); + selectedPaths = new Set($sortedNotes.map(n => n.path)); + } + } +}} /> + +
+
+ {viewTitle} +
+ + {#if $viewMode !== 'trash'} + + {/if} +
+
+ + {#if selectedPaths.size > 0} +
+ {selectedPaths.size} selected +
+ {#if $viewMode === 'trash'} + + + {:else} + + + {/if} + +
+
+ {/if} + + {#if batchMovePicker} + +
batchMovePicker = false}> + +
e.stopPropagation()}> +
+ Move {selectedPaths.size} notes to... + +
+ {#if flatNotebookList.length === 0} +
No notebooks available
+ {:else} +
+ {#each flatNotebookList as nb} + + {/each} +
+ {/if} +
+
+ {/if} + +
+ {#if $sortedNotes.length === 0} +
+ {#if $viewMode === 'trash'} +

Trash is empty

+ {:else} +

No notes yet

+ + {/if} +
+ {/if} + + {#each $sortedNotes as note (note.path)} + {#if editingNote === note.path} +
+ { + if (e.key === 'Enter') handleRename(note); + if (e.key === 'Escape') editingNote = null; + }} + onblur={() => handleRename(note)} + /> +
+ {:else} + + {/if} + {/each} +
+
+ +{#if contextMenu} +
e.stopPropagation()} role="menu"> + {#if selectedPaths.size > 1 && selectedPaths.has(contextMenu.note.path)} + + {#if $viewMode === 'trash'} + + + {:else} + + + {/if} + {:else if $viewMode === 'trash'} + + + {:else if movePickerNote} + +
+ {#if flatNotebookList.length === 0} +
No other notebooks
+ {:else} +
+ {#each flatNotebookList as nb} + + {/each} +
+ {/if} + {:else} + + {#if $quickAccessPaths.includes(contextMenu.note.relative_path)} + + {:else} + + {/if} + + + + {/if} +
+{/if} + +{#if sortMenu} + +
e.stopPropagation()}> +
Sort by
+ + + +
+{/if} + + diff --git a/src/lib/components/ResizeHandle.svelte b/src/lib/components/ResizeHandle.svelte new file mode 100644 index 0000000..2526c5c --- /dev/null +++ b/src/lib/components/ResizeHandle.svelte @@ -0,0 +1,28 @@ + + + +
diff --git a/src/lib/components/SearchPanel.svelte b/src/lib/components/SearchPanel.svelte new file mode 100644 index 0000000..1cc732a --- /dev/null +++ b/src/lib/components/SearchPanel.svelte @@ -0,0 +1,383 @@ + + +{#if $showSearch} + +
+ +
e.stopPropagation()} onkeydown={(e) => e.stopPropagation()}> +
+ + + + + + Esc +
+ + {#if results.length > 0} +
+ {#each results as result, i} + + {/each} +
+ + {:else if query.trim()} +
+ + + + + + + No results for "{query}" +
+ {:else} +
+ Type to search across all notes +
+ {/if} +
+
+{/if} + + diff --git a/src/lib/components/SettingsPanel.svelte b/src/lib/components/SettingsPanel.svelte new file mode 100644 index 0000000..5f401d1 --- /dev/null +++ b/src/lib/components/SettingsPanel.svelte @@ -0,0 +1,1928 @@ + + +{#if $showSettings} + +
{ if (e.key === 'Escape') close(); }}> + +
e.stopPropagation()}> +
+

Settings

+ +
+ +
+ + +
+ {#if activeTab === 'general'} +
+
+

Notes List

+ +
+ +
+

Time Format

+
+ + + +
+
+ +
+

Performance

+ +
+ +
+

System

+ + +
+
+ {:else if activeTab === 'editor'} +
+
+

Title

+
+ + + +
+ How the note title is displayed in the editor + + +
+ +
+

Wiki Links & Graph

+ +
+ +
+

PDF Preview

+ +
+ + {#if pdfPreview} +
+

PDF Height

+
+ {#each pdfHeightPresets as preset} + + {/each} +
+ Default height for PDF previews in notes +
+ {/if} +
+ {:else if activeTab === 'styling'} +
+
+

Theme

+
+ + +
+
+ +
+

Accent Color

+
+ {#each accentPresets as preset} + + {/each} +
+
+ +
+

Font Size

+
+ {#each fontSizePresets as preset} + + {/each} +
+
+ +
+

Font

+
+ {#each fontFamilyPresets as preset} + + {/each} +
+
+
+ {:else if activeTab === 'backup'} +
+
+

Automatic Backup

+ + + +
+ Backup frequency +
+ {#each [{ value: '1h', label: '1 hour' }, { value: '6h', label: '6 hours' }, { value: '12h', label: '12 hours' }, { value: '24h', label: '24 hours' }] as opt} + + {/each} +
+
+ +
+ Maximum backups +
+ {#each [5, 10, 20, 50] as count} + + {/each} +
+
+ + + +
+ + {#if $appConfig?.backup_location} +

{$appConfig.backup_location}

+ {/if} + +
+ +

+ {#if $appConfig?.last_backup_time} + Last backup: {formatBackupDate($appConfig.last_backup_time)} + {:else} + No backups yet + {/if} +

+ + {#if backupMessage} +
+ {#if backupMessage.type === 'success'} + + {:else} + + {/if} + {backupMessage.text} +
+ {/if} +
+ +
+

Restore Backup

+ {#if backups.length === 0} +

No backups found

+ {:else} +
+ {#each backups as entry} +
+
+ {formatBackupDate(entry.created)} + {formatBackupSize(entry.size)} +
+
+ + +
+
+ {/each} +
+ {/if} +
+ + {#if restoreConfirm} + +
restoreConfirm = null}> + +
e.stopPropagation()}> +

Restore Backup?

+

This will replace all notes in your vault with the backup from {formatBackupDate(restoreConfirm.created)}. This action cannot be undone.

+
+ + +
+
+
+ {/if} +
+ + {:else if activeTab === 'import'} +
+
+

Import from Obsidian

+

Convert Obsidian wiki-links (![[image.png]], [[note]]) to standard markdown links across all notes in the current vault. This expects that you have opened an Obsidian vault directory directly as your HelixNotes vault.

+
+ + This modifies files in place. Make a backup before running! +
+ + + {#if importResult} +
+ + Converted {importResult.links_converted} links across {importResult.files_converted} files +
+ {/if} + {#if importError} +
+ + {importError} +
+ {/if} +
+
+ + {:else if activeTab === 'ai'} +
+
+

Provider

+
+ + + +
+
+ + {#if aiProvider} +
+ +
+

Model

+
+ {#each aiModels as m} + + {/each} +
+
+ +
+

Writing Style

+ +

Describe your preferred tone, style, or personality. This will be applied to all AI actions.

+
+ +
+

Connection

+ + {#if aiTestMessage} +
+ {#if aiTestMessage.type === 'success'} + + {:else} + + {/if} + {aiTestMessage.text} +
+ {/if} +
+ +
+

Usage

+

Select text in the editor and right-click to access AI writing tools: improve, fix grammar, rewrite, summarize, translate, and more.

+
+ {/if} +
+ + {:else if activeTab === 'updates'} +
+
+

Current Version

+

HelixNotes v{appVersion}

+
+ +
+

Check for Updates

+ +
+ + {#if updateAvailable} +
+

Update Available

+
+

Version {updateAvailable.version}

+ {#if updateAvailable.date} +

{new Date(updateAvailable.date).toLocaleDateString()}

+ {/if} + {#if updateAvailable.body} +
{updateAvailable.body}
+ {/if} +
+ + {#if updateDownloading && updateProgress > 0} +
+
+
+ {/if} +
+ {/if} + + {#if updateMessage} +
+ {#if updateMessage.type === 'success'} + + {:else if updateMessage.type === 'error'} + + {:else} + + {/if} + {updateMessage.text} +
+ {/if} +
+ {/if} +
+
+
+
+{/if} + + diff --git a/src/lib/components/Sidebar.svelte b/src/lib/components/Sidebar.svelte new file mode 100644 index 0000000..ccfa35f --- /dev/null +++ b/src/lib/components/Sidebar.svelte @@ -0,0 +1,762 @@ + + + + + + +{#if contextMenu} + +
e.stopPropagation()}> + + + {#if $notebookIcons[contextMenu.notebook.relative_path]} + + {/if} + +
+{/if} + +{#if trashContextMenu} + +
e.stopPropagation()}> + +
+{/if} + +{#snippet notebookItem(nb: NotebookEntry, depth: number)} + {@const hasChildren = nb.children.length > 0} + {@const isCollapsed = $collapsedNotebooks.includes(nb.path)} + {@const iconSrc = getNotebookIconSrc(nb)} + {#if editingNotebook === nb.path} +
+ { + if (e.key === 'Enter') handleRename(nb); + if (e.key === 'Escape') editingNotebook = null; + }} + onblur={() => handleRename(nb)} + /> +
+ {:else} + + {/if} + {#if hasChildren && !isCollapsed} + {#each nb.children as child (child.path)} + {@render notebookItem(child, depth + 1)} + {/each} + {/if} +{/snippet} + + diff --git a/src/lib/components/TitleBar.svelte b/src/lib/components/TitleBar.svelte new file mode 100644 index 0000000..3cfb2ae --- /dev/null +++ b/src/lib/components/TitleBar.svelte @@ -0,0 +1,222 @@ + + + +
+
+ + + + + + + + + + HelixNotes +
+
+ + + +
+
+ + + +
+
+ + diff --git a/src/lib/components/VaultPicker.svelte b/src/lib/components/VaultPicker.svelte new file mode 100644 index 0000000..163505e --- /dev/null +++ b/src/lib/components/VaultPicker.svelte @@ -0,0 +1,263 @@ + + + +
{ if (!(e.target as HTMLElement).closest('button, .picker-card')) appWindow.startDragging(); }}> +
+ +
+
+ +

HelixNotes

+

Local-first markdown notes

+

Your notes are stored as standard Markdown (.md) files. Pick any folder — existing .md files will be recognized automatically.

+ + {#if error} +
{error}
+ {/if} + + + + {#if $appConfig?.active_vault} + + {/if} + + {#if recentVaults.length > 0} +
+ Recent + {#each recentVaults as vault} + + {/each} +
+ {/if} +
+
+ + diff --git a/src/lib/index.ts b/src/lib/index.ts new file mode 100644 index 0000000..856f2b6 --- /dev/null +++ b/src/lib/index.ts @@ -0,0 +1 @@ +// place files you want to import through the `$lib` alias in this folder. diff --git a/src/lib/stores/app.ts b/src/lib/stores/app.ts new file mode 100644 index 0000000..c5d1809 --- /dev/null +++ b/src/lib/stores/app.ts @@ -0,0 +1,97 @@ +import { writable, derived } from "svelte/store"; +import type { + AppConfig, + NoteEntry, + NoteContent, + NotebookEntry, + VaultState, + ViewMode, + SortMode, +} from "$lib/types"; + +// App state +export const appConfig = writable(null); +export const vaultReady = writable(false); + +// UI state +export const viewMode = writable("all"); +export const sortMode = writable("modified"); +export const sidebarCollapsed = writable(false); +export const sidebarWidth = writable(220); +export const notelistWidth = writable(280); +export const searchQuery = writable(""); +export const showCommandPalette = writable(false); +export const showSearch = writable(false); +export const showSettings = writable(false); +export const showInfo = writable(false); +export const notebookIcons = writable>({}); +export const quickAccessPaths = writable([]); +export const collapsedNotebooks = writable([]); + +// Data +export const notebooks = writable([]); +export const notes = writable([]); +export const tags = writable<[string, number][]>([]); +export const activeNote = writable(null); +export const activeNotePath = writable(null); +export const activeNotebook = writable(null); +export const activeTag = writable(null); + +// Editor state +export const editorDirty = writable(false); +export const sourceMode = writable(false); +export const focusMode = writable(false); + +// Theme +export const theme = writable("system"); + +// Derived +export const sortedNotes = derived([notes, sortMode], ([$notes, $sortMode]) => { + const pinned = $notes.filter((n) => n.meta.pinned); + const unpinned = $notes.filter((n) => !n.meta.pinned); + + const sortFn = (a: NoteEntry, b: NoteEntry) => { + switch ($sortMode) { + case "title": + return a.meta.title.localeCompare(b.meta.title); + case "created": + return ( + new Date(b.meta.created).getTime() - + new Date(a.meta.created).getTime() + ); + case "modified": + default: + return ( + new Date(b.meta.modified).getTime() - + new Date(a.meta.modified).getTime() + ); + } + }; + + return [...pinned.sort(sortFn), ...unpinned.sort(sortFn)]; +}); + +export const vaultState = derived( + [ + activeNotePath, + sidebarWidth, + notelistWidth, + sidebarCollapsed, + collapsedNotebooks, + ], + ([ + $activeNotePath, + $sidebarWidth, + $notelistWidth, + $sidebarCollapsed, + $collapsedNotebooks, + ]) => { + return { + last_open_note: $activeNotePath, + sidebar_width: $sidebarWidth, + notelist_width: $notelistWidth, + sidebar_collapsed: $sidebarCollapsed, + collapsed_notebooks: $collapsedNotebooks, + } satisfies VaultState; + }, +); diff --git a/src/lib/types.ts b/src/lib/types.ts new file mode 100644 index 0000000..54d20ec --- /dev/null +++ b/src/lib/types.ts @@ -0,0 +1,132 @@ +export interface NoteMeta { + id: string; + title: string; + tags: string[]; + pinned: boolean; + created: string; + modified: string; +} + +export interface NoteEntry { + path: string; + relative_path: string; + meta: NoteMeta; + preview: string; +} + +export interface NotebookEntry { + name: string; + path: string; + relative_path: string; + children: NotebookEntry[]; + note_count: number; +} + +export interface NoteContent { + path: string; + meta: NoteMeta; + content: string; + raw: string; +} + +export interface VaultConfig { + path: string; + name: string; +} + +export interface AppConfig { + vaults: VaultConfig[]; + active_vault: string | null; + theme: string; + accent_color: string | null; + font_size: number | null; + font_family: string | null; + compact_notes: boolean; + time_format: string; + gpu_acceleration: boolean; + autostart: boolean; + pdf_preview: boolean; + pdf_height: number; + title_mode: string; + hide_title_in_body: boolean; + backup_enabled: boolean; + backup_frequency: string; + backup_max_count: number; + backup_location: string | null; + last_backup_time: string | null; + backup_include_attachments: boolean; + max_versions_per_note: number; + ai_provider: string | null; + ai_api_key: string | null; + openai_api_key: string | null; + ai_model: string; + ai_writing_style: string | null; + default_view_mode: boolean; + show_tray_icon: boolean; + enable_wiki_links: boolean; +} + +export interface VaultState { + last_open_note: string | null; + sidebar_width: number; + notelist_width: number; + sidebar_collapsed: boolean; + collapsed_notebooks: string[]; +} + +export interface SearchResult { + path: string; + title: string; + snippet: string; + score: number; +} + +export interface FileEvent { + event_type: string; + path: string; +} + +export interface ImportResult { + files_converted: number; + links_converted: number; +} + +export interface VaultStats { + total_notes: number; + total_attachments: number; + notes_size: number; + attachments_size: number; + total_size: number; +} + +export interface BackupEntry { + filename: string; + path: string; + size: number; + created: string; +} + +export interface VersionEntry { + timestamp: string; + size: number; +} + +export interface AiStreamEvent { + event_type: string; + text: string | null; + error: string | null; +} + +export interface NoteTitleEntry { + title: string; + path: string; +} + +export type SortMode = "modified" | "title" | "created"; +export type ViewMode = + | "all" + | "notebook" + | "tag" + | "trash" + | "search" + | "quickaccess"; diff --git a/src/lib/utils/debounce.ts b/src/lib/utils/debounce.ts new file mode 100644 index 0000000..71e0a28 --- /dev/null +++ b/src/lib/utils/debounce.ts @@ -0,0 +1,7 @@ +export function debounce any>(fn: T, ms: number): T { + let timeout: ReturnType; + return ((...args: any[]) => { + clearTimeout(timeout); + timeout = setTimeout(() => fn(...args), ms); + }) as T; +} diff --git a/src/lib/utils/time.ts b/src/lib/utils/time.ts new file mode 100644 index 0000000..c27f365 --- /dev/null +++ b/src/lib/utils/time.ts @@ -0,0 +1,26 @@ +export function formatRelativeTime(dateStr: string): string { + const date = new Date(dateStr); + const now = new Date(); + const diff = now.getTime() - date.getTime(); + const seconds = Math.floor(diff / 1000); + const minutes = Math.floor(seconds / 60); + const hours = Math.floor(minutes / 60); + const days = Math.floor(hours / 24); + + if (seconds < 60) return 'just now'; + if (minutes < 60) return `${minutes}m ago`; + if (hours < 24) return `${hours}h ago`; + if (days < 7) return `${days}d ago`; + + return date.toLocaleDateString(undefined, { month: 'short', day: 'numeric' }); +} + +export function formatDate(dateStr: string): string { + return new Date(dateStr).toLocaleDateString(undefined, { + year: 'numeric', + month: 'short', + day: 'numeric', + hour: '2-digit', + minute: '2-digit' + }); +} diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte new file mode 100644 index 0000000..70f5451 --- /dev/null +++ b/src/routes/+layout.svelte @@ -0,0 +1,77 @@ + + + e.preventDefault()} /> + + + HelixNotes + + +{@render children()} diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts new file mode 100644 index 0000000..ae88a27 --- /dev/null +++ b/src/routes/+layout.ts @@ -0,0 +1,2 @@ +export const prerender = false; +export const ssr = false; diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte new file mode 100644 index 0000000..0d97a38 --- /dev/null +++ b/src/routes/+page.svelte @@ -0,0 +1,118 @@ + + +{#if loading} +
+
+
+{:else if $vaultReady} + +{:else} + +{/if} + + diff --git a/static/robots.txt b/static/robots.txt new file mode 100644 index 0000000..b6dd667 --- /dev/null +++ b/static/robots.txt @@ -0,0 +1,3 @@ +# allow crawling everything by default +User-agent: * +Disallow: diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..7707cbc --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,12 @@ +import adapter from "@sveltejs/adapter-static"; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + kit: { + adapter: adapter({ + fallback: "index.html", + }), + }, +}; + +export default config; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..2c2ed3c --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,20 @@ +{ + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "rewriteRelativeImportExtensions": true, + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "moduleResolution": "bundler" + } + // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias + // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files + // + // To make changes to top-level options such as include and exclude, we recommend extending + // the generated config; see https://svelte.dev/docs/kit/configuration#typescript +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..60f816b --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,26 @@ +import { sveltekit } from "@sveltejs/kit/vite"; +import tailwindcss from "@tailwindcss/vite"; +import { defineConfig } from "vite"; + +const host = process.env.TAURI_DEV_HOST; + +export default defineConfig({ + plugins: [sveltekit(), tailwindcss()], + clearScreen: false, + server: { + port: 5173, + strictPort: true, + host: host || false, + hmr: host + ? { + protocol: "ws", + host, + port: 5174, + overlay: false, + } + : { overlay: false }, + watch: { + ignored: ["**/src-tauri/**"], + }, + }, +});