Skip to content

Commit

Permalink
fix dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Ggiggle committed Jan 25, 2024
1 parent c5015cc commit 06b1785
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pilota-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ maintenance = { status = "actively-developed" }

[dependencies]
pilota-thrift-parser = { path = "../pilota-thrift-parser", version = "0.10" }
pilota = { path = "../pilota", version = "0.10" }

ahash = "0.8"
anyhow = "1"
dashmap = "5"
heck = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion pilota-build/src/codegen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ use std::{
sync::Arc,
};

use ahash::AHashMap;
use dashmap::DashMap;
use faststr::FastStr;
use itertools::Itertools;
use normpath::PathExt;
use pilota::AHashMap;
use pkg_tree::PkgNode;
use quote::quote;
use rayon::prelude::{IntoParallelRefIterator, ParallelIterator};
Expand Down
2 changes: 1 addition & 1 deletion pilota-build/src/parser/protobuf/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use std::{collections::HashMap, path::PathBuf, sync::Arc};

use ahash::AHashMap;
use faststr::FastStr;
use itertools::Itertools;
use normpath::PathExt;
use pilota::AHashMap;
use protobuf::descriptor::{
field_descriptor_proto::{Label, Type},
DescriptorProto, EnumDescriptorProto, ServiceDescriptorProto,
Expand Down
2 changes: 1 addition & 1 deletion pilota-build/src/resolve.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::{ptr::NonNull, sync::Arc};

use ahash::AHashMap;
use itertools::Itertools;
use pilota::AHashMap;
use rustc_hash::{FxHashMap, FxHashSet};

use crate::{
Expand Down

0 comments on commit 06b1785

Please sign in to comment.