Skip to content

Commit a4be548

Browse files
committed
Migrate to GitQL SDK 0.37.0
1 parent ae63caf commit a4be548

File tree

20 files changed

+88
-84
lines changed

20 files changed

+88
-84
lines changed

Cargo.lock

Lines changed: 63 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ categories = ["command-line-utilities"]
1313
exclude = [".github/**", "docs/**", "media/**", "scripts/**"]
1414

1515
[dependencies]
16-
gitql-core = "0.13.0"
17-
gitql-std = "0.13.0"
18-
gitql-ast = "0.32.0"
19-
gitql-parser = "0.35.0"
20-
gitql-engine = "0.36.0"
21-
gitql-cli = "0.36.0"
16+
gitql-core = "0.14.0"
17+
gitql-std = "0.14.0"
18+
gitql-ast = "0.33.0"
19+
gitql-parser = "0.36.0"
20+
gitql-engine = "0.37.0"
21+
gitql-cli = "0.37.0"
2222

2323
inkwell = { version = "0.5.0", features = ["llvm18-0"] }
2424

src/functions/matchers/arithmetic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::collections::HashMap;
22

33
use gitql_core::signature::Signature;
44
use gitql_core::signature::StandardFunction;
5-
use gitql_core::values::base::Value;
5+
use gitql_core::values::Value;
66

77
use crate::functions::binary_matcher_signature;
88
use crate::functions::binary_matchers_sides;

src/functions/matchers/binary.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::collections::HashMap;
22

33
use gitql_core::signature::Signature;
44
use gitql_core::signature::StandardFunction;
5-
use gitql_core::values::base::Value;
5+
use gitql_core::values::Value;
66

77
use crate::functions::binary_matcher_signature;
88
use crate::functions::binary_matchers_sides;

src/functions/matchers/call.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::collections::HashMap;
22

33
use gitql_core::signature::Signature;
44
use gitql_core::signature::StandardFunction;
5-
use gitql_core::values::base::Value;
5+
use gitql_core::values::Value;
66

77
use crate::ir::types::InstMatcherType;
88
use crate::ir::values::InstMatcherValue;

src/functions/matchers/cast.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::collections::HashMap;
33
use gitql_ast::types::optional::OptionType;
44
use gitql_core::signature::Signature;
55
use gitql_core::signature::StandardFunction;
6-
use gitql_core::values::base::Value;
6+
use gitql_core::values::Value;
77

88
use crate::functions::single_optional_matcher_value;
99
use crate::ir::types::InstMatcherType;

src/functions/matchers/combine.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::collections::HashMap;
33
use gitql_ast::types::varargs::VarargsType;
44
use gitql_core::signature::Signature;
55
use gitql_core::signature::StandardFunction;
6-
use gitql_core::values::base::Value;
6+
use gitql_core::values::Value;
77
use inkwell::llvm_sys::prelude::LLVMValueRef;
88

99
use crate::functions::binary_matchers_sides;

src/functions/matchers/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::collections::HashMap;
33
use gitql_ast::types::integer::IntType;
44
use gitql_core::signature::Signature;
55
use gitql_core::signature::StandardFunction;
6-
use gitql_core::values::base::Value;
6+
use gitql_core::values::Value;
77

88
use crate::functions::matcher_signature_without_parameters;
99
use crate::ir::types::InstMatcherType;

src/functions/matchers/exception.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use crate::matchers::exception::LandingPadInstMatcher;
77

88
use gitql_core::signature::Signature;
99
use gitql_core::signature::StandardFunction;
10-
use gitql_core::values::base::Value;
10+
use gitql_core::values::Value;
1111

1212
#[inline(always)]
1313
pub fn register_exception_inst_matchers_functions(

src/functions/matchers/fcmp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::collections::HashMap;
22

33
use gitql_core::signature::Signature;
44
use gitql_core::signature::StandardFunction;
5-
use gitql_core::values::base::Value;
5+
use gitql_core::values::Value;
66

77
use crate::functions::binary_matcher_signature;
88
use crate::functions::binary_matchers_sides;

0 commit comments

Comments
 (0)