Increment cargo version
This commit is contained in:
parent
b08a1c5f9a
commit
f9a4496473
2119
Cargo.lock
generated
2119
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "dust-lang"
|
||||
description = "Data-Oriented Programming Language"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
repository = "https://github.com/tree-sitter/tree-sitter-dust"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
@ -12,13 +12,9 @@ path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
ansi_term = "0.12.1"
|
||||
chrono = "0.4.31"
|
||||
clap = { version = "4.4.4", features = ["derive"] }
|
||||
comfy-table = "7.0.1"
|
||||
csv = "1.2.2"
|
||||
eframe = "0.22.0"
|
||||
egui = "0.22.0"
|
||||
egui_extras = "0.22.0"
|
||||
git2 = "0.18.1"
|
||||
json = "0.12.4"
|
||||
rand = "0.8.5"
|
||||
@ -27,9 +23,7 @@ reqwest = { version = "0.11.20", features = ["blocking", "json"] }
|
||||
rustyline = { version = "12.0.0", features = ["derive", "with-file-history"] }
|
||||
serde = { version = "1.0.188", features = ["derive"] }
|
||||
serde_json = "1.0.107"
|
||||
sysinfo = "0.29.10"
|
||||
toml = "0.8.1"
|
||||
trash = "3.0.6"
|
||||
tree-sitter = "0.20.10"
|
||||
|
||||
[build-dependencies]
|
||||
|
12
src/error.rs
12
src/error.rs
@ -164,12 +164,6 @@ impl From<io::Error> for Error {
|
||||
}
|
||||
}
|
||||
|
||||
impl From<git2::Error> for Error {
|
||||
fn from(value: git2::Error) -> Self {
|
||||
Error::ToolFailure(value.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
impl From<reqwest::Error> for Error {
|
||||
fn from(value: reqwest::Error) -> Self {
|
||||
Error::ToolFailure(value.to_string())
|
||||
@ -188,12 +182,6 @@ impl From<time::SystemTimeError> for Error {
|
||||
}
|
||||
}
|
||||
|
||||
impl From<trash::Error> for Error {
|
||||
fn from(value: trash::Error) -> Self {
|
||||
Error::ToolFailure(value.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
impl From<toml::de::Error> for Error {
|
||||
fn from(value: toml::de::Error) -> Self {
|
||||
Error::ToolFailure(value.to_string())
|
||||
|
Loading…
Reference in New Issue
Block a user