Skip to content

Instantly share code, notes, and snippets.

@hcs64
Last active July 25, 2018 16:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hcs64/47779aec6368c7790d6890e4f3828017 to your computer and use it in GitHub Desktop.
Save hcs64/47779aec6368c7790d6890e4f3828017 to your computer and use it in GitHub Desktop.
Default features test
[package]
name = "cargotest2"
version = "0.1.0"
authors = ["Adam Gashlin <agashlin@mozilla.com>"]
[dependencies]
walkdir = { version = "2.1.4", optional = true }
scoped-pool = { version = "1.0.0", optional = true }
blake2 = { version = "0.7.1", optional = true }
base64 = { version = "0.9.2", optional = true }
rustbreak = { version = "1.4.0", optional = true }
type-name = { version = "0.1.0", optional = true }
[features]
default = ["midi_file_scan", "disk_cache"]
midi_file_scan = ["walkdir", "scoped-pool", "blake2", "base64"]
disk_cache = ["rustbreak", "type-name"]
extern crate walkdir;
extern crate scoped_pool;
extern crate blake2;
extern crate base64;
extern crate rustbreak;
extern crate type_name;
fn main() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment