Invert core -> dap dependency

This commit is contained in:
Blaž Hrastnik 2021-10-17 13:58:11 +09:00
parent ea59f77a6b
commit 83a8167402
6 changed files with 12 additions and 12 deletions

View file

@ -12,6 +12,7 @@ homepage = "https://helix-editor.com"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
helix-core = { version = "0.4", path = "../helix-core" }
anyhow = "1.0"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }

View file

@ -3,9 +3,10 @@ use crate::{
types::*,
Error, Result,
};
use helix_core::syntax::DebuggerQuirks;
use anyhow::anyhow;
pub use log::{error, info};
use serde::{Deserialize, Serialize};
use std::{
collections::HashMap,
net::{IpAddr, Ipv4Addr, SocketAddr},
@ -21,13 +22,6 @@ use tokio::{
time,
};
// Different workarounds for adapters' differences
#[derive(Debug, Default, PartialEq, Clone, Serialize, Deserialize)]
pub struct DebuggerQuirks {
#[serde(default)]
pub absolute_paths: bool,
}
#[derive(Debug)]
pub struct Client {
id: usize,

View file

@ -2,7 +2,7 @@ mod client;
mod transport;
mod types;
pub use client::{Client, DebuggerQuirks};
pub use client::Client;
pub use events::Event;
pub use transport::{Payload, Response, Transport};
pub use types::*;