Skip to content

Commit 2ac068b

Browse files
crc: remove clarity_types dependency and use clarity crate aliases, #6627
1 parent 298959a commit 2ac068b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stackslib/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ chrono = "0.4.19"
7676
tempfile = "3.3"
7777
proptest = { version = "1.6.0", default-features = false, features = ["std"] }
7878
insta = { version = "1.37.0", features = ["ron"] }
79-
clarity-types = { package = "clarity-types", path = "../clarity-types", default-features = false }
8079

8180
[features]
8281
default = []

stackslib/src/chainstate/tests/parse_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
use clarity::vm::ast::parser::v2::MAX_CONTRACT_NAME_LEN;
1818
use clarity::vm::ast::stack_depth_checker::AST_CALL_STACK_DEPTH_BUFFER;
1919
use clarity::vm::MAX_CALL_STACK_DEPTH;
20-
#[allow(unused_imports)] // Just used for documentation purpose
21-
use clarity_types::{errors::ParseErrors, ContractName};
2220

21+
#[allow(unused_imports)] // Just used for documentation purpose
22+
use clarity::vm::{ast::errors::ParseErrors, representations::ContractName};
2323
use crate::chainstate::tests::consensus::contract_deploy_consensus_test;
2424

2525
/// ParserError: [`ParseErrors::ExpressionStackDepthTooDeep`]

0 commit comments

Comments
 (0)