mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-11-23 12:46:43 +00:00
feat: bump edition of most crates to rust 2024 (#2042)
Some checks are pending
tinymist::auto_tag / auto-tag (push) Waiting to run
tinymist::ci / announce (push) Blocked by required conditions
tinymist::ci / Duplicate Actions Detection (push) Waiting to run
tinymist::ci / Check Clippy, Formatting, Completion, Documentation, and Tests (Linux) (push) Waiting to run
tinymist::ci / Check Minimum Rust version and Tests (Windows) (push) Waiting to run
tinymist::ci / prepare-build (push) Waiting to run
tinymist::ci / build (push) Blocked by required conditions
tinymist::gh_pages / build-gh-pages (push) Waiting to run
Some checks are pending
tinymist::auto_tag / auto-tag (push) Waiting to run
tinymist::ci / announce (push) Blocked by required conditions
tinymist::ci / Duplicate Actions Detection (push) Waiting to run
tinymist::ci / Check Clippy, Formatting, Completion, Documentation, and Tests (Linux) (push) Waiting to run
tinymist::ci / Check Minimum Rust version and Tests (Windows) (push) Waiting to run
tinymist::ci / prepare-build (push) Waiting to run
tinymist::ci / build (push) Blocked by required conditions
tinymist::gh_pages / build-gh-pages (push) Waiting to run
This commit is contained in:
parent
d227ad2a53
commit
05280aec4d
128 changed files with 340 additions and 331 deletions
|
|
@ -16,22 +16,22 @@
|
|||
|
||||
pub use tinymist_debug::BreakpointKind;
|
||||
|
||||
use std::sync::{mpsc, Arc};
|
||||
use std::sync::{Arc, mpsc};
|
||||
|
||||
use comemo::Track;
|
||||
use comemo::Tracked;
|
||||
use parking_lot::Mutex;
|
||||
use tinymist_debug::{set_debug_session, DebugSession, DebugSessionHandler};
|
||||
use tinymist_debug::{DebugSession, DebugSessionHandler, set_debug_session};
|
||||
use tinymist_std::typst_shim::eval::{Eval, Vm};
|
||||
use tinymist_world::{CompilerFeat, CompilerWorld};
|
||||
use typst::{
|
||||
__bail as bail, World,
|
||||
diag::{SourceResult, Warned},
|
||||
engine::{Engine, Route, Sink, Traced},
|
||||
foundations::{Context, Scopes, Value},
|
||||
introspection::Introspector,
|
||||
layout::PagedDocument,
|
||||
syntax::{ast, parse_code, Span},
|
||||
World, __bail as bail,
|
||||
syntax::{Span, ast, parse_code},
|
||||
};
|
||||
|
||||
type RequestId = i64;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue