1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! An NPM dependency resolver for building `node_modules/` trees and
//! extracting them to their final resting place.

pub use nassun::Nassun;
#[cfg(not(target_arch = "wasm32"))]
pub use nassun::{NassunError, NassunOpts};

pub use error::*;
pub use into_kdl::IntoKdl;
pub use lockfile::*;
pub use maintainer::*;
#[cfg(target_arch = "wasm32")]
mod wasm;

mod error;
mod graph;
mod into_kdl;
mod linkers;
mod lockfile;
mod maintainer;
mod resolver;
#[cfg(target_arch = "wasm32")]
pub use wasm::*;