Skip to content

Commit 4084891

Browse files
committed
Merge PR #11
2 parents 421823b + 6f9a09d commit 4084891

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ edition = "2018"
1111

1212
[dependencies]
1313
smallvec = { version = "1.0.0" }
14+
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"], optional = true }
1415

1516
[features]
1617
std = []

src/lib.rs

+17-10
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,29 @@
22
#![warn(missing_docs)]
33
//! A simple and generic implementation of an immutable interval tree.
44
5-
#[cfg(feature = "std")]
6-
extern crate std;
75
#[cfg(not(feature = "std"))]
86
extern crate alloc;
7+
#[cfg(feature = "serde")]
8+
extern crate serde;
9+
#[cfg(feature = "std")]
10+
extern crate std;
911

10-
use core::ops::Range;
11-
use core::iter::FromIterator;
12+
#[cfg(not(feature = "std"))]
13+
use alloc::vec::{IntoIter, Vec};
14+
use core::cmp;
1215
use core::fmt::{Debug, Formatter, Result as FmtResult};
16+
use core::iter::FromIterator;
17+
use core::ops::Range;
1318
use core::slice::Iter;
14-
use core::cmp;
15-
#[cfg(feature = "std")]
16-
use std::vec::{Vec, IntoIter};
17-
#[cfg(not(feature = "std"))]
18-
use alloc::vec::{Vec, IntoIter};
19+
#[cfg(feature = "serde")]
20+
use serde::{Deserialize, Serialize};
1921
use smallvec::SmallVec;
22+
#[cfg(feature = "std")]
23+
use std::vec::{IntoIter, Vec};
2024

2125
/// An element of an interval tree.
2226
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
27+
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
2328
pub struct Element<K, V> {
2429
/// The range associated with this element.
2530
pub range: Range<K>,
@@ -35,7 +40,8 @@ impl<K, V> From<(Range<K>, V)> for Element<K, V> {
3540
}
3641

3742
#[derive(Clone, Debug, Hash)]
38-
struct Node<K, V>{
43+
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
44+
struct Node<K, V> {
3945
element: Element<K, V>,
4046
max: K,
4147
}
@@ -45,6 +51,7 @@ struct Node<K, V>{
4551
/// To build it, always use `FromIterator`. This is not very optimized
4652
/// as it takes `O(log n)` stack (it uses recursion) but runs in `O(n log n)`.
4753
#[derive(Clone, Debug, Hash)]
54+
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
4855
pub struct IntervalTree<K, V> {
4956
data: Vec<Node<K, V>>,
5057
}

0 commit comments

Comments
 (0)