Skip to content

Commit

Permalink
Merge pull request #411 from datanel/remove_packages
Browse files Browse the repository at this point in the history
Remove some useless crates
  • Loading branch information
mergify[bot] authored Oct 14, 2019
2 parents 940f844 + d8503f0 commit f047bd1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ travis-ci = { repository = "CanalTP/transit_model" }
chrono = "0.4"
csv = "1.0"
derivative = "1"
env_logger = "0.6"
failure = "0.1"
geo = "0.12"
geo-types = "0.4"
Expand All @@ -29,7 +28,6 @@ proj = { version = "0.10", optional = true }
rust_decimal = "1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
structopt = "0.3"
tempfile = "3"
time-parse = "0.1"
transit_model_procmacro = { version = "0.1", path = "./transit_model_procmacro" }
Expand Down
1 change: 0 additions & 1 deletion examples/gtfs_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ fn run() -> Result<()> {
}

fn main() {
env_logger::init();
if let Err(err) = run() {
for cause in err.iter_chain() {
eprintln!("{}", cause);
Expand Down
1 change: 0 additions & 1 deletion examples/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ fn run() -> Result<()> {
}

fn main() {
env_logger::init();
if let Err(err) = run() {
for cause in err.iter_chain() {
eprintln!("{}", cause);
Expand Down
11 changes: 4 additions & 7 deletions src/ntfs/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,11 @@
use crate::{Model, Result};
use failure::bail;
use std::collections::HashSet;
use structopt::clap::arg_enum;

arg_enum! {
#[derive(Debug)]
pub enum Action {
Extract,
Remove,
}
#[derive(Debug)]
pub enum Action {
Extract,
Remove,
}

/// Extract or remove networks
Expand Down

0 comments on commit f047bd1

Please sign in to comment.