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
10 changes: 10 additions & 0 deletions od2net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,13 @@ instant = "0.1.12"

[target.'cfg(target_arch = "wasm32")'.dependencies]
instant = { version = "0.1.12", features = ["wasm-bindgen"] }

# --- Defines the library (for your R package to link to) ---
[lib]
name = "od2net"
path = "src/lib.rs"

# --- Defines the executable (for CLI use) ---
[[bin]]
name = "od2net"
path = "src/main.rs"
2 changes: 1 addition & 1 deletion od2net/src/config.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::collections::HashMap;

use anyhow::Result;
use anyhow::{bail, Result};
use serde::{Deserialize, Serialize};

/// Everything needed to run the pipeline.
Expand Down
Loading