Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Leshiy committed Apr 25, 2024
1 parent c6130e9 commit bfa58ea
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 15 deletions.
4 changes: 3 additions & 1 deletion hermes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,10 @@ ed25519-bip32 = "0.4.1"
dashmap = "5.5.3"
once_cell = "1.19.0"
clap = "4.5.3"
derive_more = { version= "0.99.17", default-features= false }
derive_more = { version= "0.99.17", default-features = false }
chrono = "0.4.35"
chrono-tz = "0.8.6"
saffron = "0.1.0"
tokio = "1.36.0"
pest = "2.7.2"
pest_derive = "2.7.2"
7 changes: 3 additions & 4 deletions hermes/crates/cbork/abnf-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ license = "MIT OR Apache-2.0"
workspace = true

[dependencies]
derive_more = "0.99.17"

pest = { version = "2.7.2", features = ["std", "pretty-print", "memchr", "const_prec_climber"] }
pest_derive = { version = "2.7.2", features = ["grammar-extras"] }
derive_more = { workspace = true, features = ["display"] }
pest = { workspace = true, features = ["std", "pretty-print", "memchr", "const_prec_climber"] }
pest_derive = { workspace = true, features = ["grammar-extras"] }
4 changes: 1 addition & 3 deletions hermes/crates/cbork/abnf-parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@

use std::fmt::Debug;

pub use pest::Parser;

extern crate derive_more;
use derive_more::{Display, From};
pub use pest::Parser;
use pest::{error::Error, iterators::Pairs};

pub mod abnf {
Expand Down
7 changes: 3 additions & 4 deletions hermes/crates/cbork/cddl-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ license = "MIT OR Apache-2.0"
workspace = true

[dependencies]
derive_more = "0.99.17"

pest = { version = "2.7.2", features = ["std", "pretty-print", "memchr", "const_prec_climber"] }
pest_derive = { version = "2.7.2", features = ["grammar-extras"] }
derive_more = { workspace = true, features = ["display"] }
pest = { workspace = true, features = ["std", "pretty-print", "memchr", "const_prec_climber"] }
pest_derive = { workspace = true, features = ["grammar-extras"] }
4 changes: 1 addition & 3 deletions hermes/crates/cbork/cddl-parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@

use std::fmt::Debug;

pub use pest::Parser;

extern crate derive_more;
use derive_more::{Display, From};
pub use pest::Parser;
use pest::{error::Error, iterators::Pairs};

pub mod rfc_8610 {
Expand Down

0 comments on commit bfa58ea

Please sign in to comment.