Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ license = "Apache-2.0"
maintenance = { status = "actively-developed" }

[dependencies]
num = "0.2"
derive_builder = "0.7"
num = "0.4"
derive_builder = "0.12"
serde = { version = "1.0.152", features = ["derive"], optional=true}

[features]
Expand Down
1 change: 1 addition & 0 deletions src/area.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

//! A rectangular region in the tree.

use derive_builder::Builder;
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
use {
Expand Down
6 changes: 1 addition & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,6 @@
// For extra-pedantic documentation tests.
#![doc(test(attr(deny(warnings))))]

#[macro_use]
extern crate derive_builder;
extern crate num;

pub mod area;
pub mod entry;
pub mod iter;
Expand Down Expand Up @@ -171,7 +167,7 @@ use {
/// operational region, the strict behavior is for the operation to apply only to those regions
/// which are _totally contained by_ the operational region.
///
/// [`derive_builder`]: https://docs.rs/derive_builder/0.7.0/derive_builder/
/// [`derive_builder`]: https://docs.rs/derive_builder/0.12.0/derive_builder/
/// [`.query()`]: #method.query
/// [`.modify()`]: #method.modify
/// [`.delete()`]: #method.delete
Expand Down