Skip to content

Commit

Permalink
feat(plugin): change output to cydlib
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Feb 18, 2021
1 parent dbb6274 commit 1d4b592
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/coco_coverage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,7 @@ pretty_assertions = "^0.6"
#tcmalloc = { version = "^0.3", features = ["bundled"] }
tcmalloc = { version = "^0.3", optional = true }


[lib]
name = "coco_coverage"
crate-type = ["cdylib"]
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ use std::{process, thread};

use grcov::*;

#[allow(dead_code)]
fn main() {
let default_num_threads = 1.max(num_cpus::get() - 1).to_string();

Expand Down
4 changes: 4 additions & 0 deletions plugins/coco_struct_analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]

[lib]
name = "coco_struct_analysis"
crate-type = ["cdylib"]
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#[allow(dead_code)]
fn main() {
println!("Hello, world!");
}
4 changes: 4 additions & 0 deletions plugins/coco_swagger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ path = "../../core_model"

[dependencies.plugin_interface]
path = "../../plugin_interface"

[lib]
name = "coco_swagger"
crate-type = ["cdylib"]

0 comments on commit 1d4b592

Please sign in to comment.