Compare commits
6 commits
8b613fae3c
...
4f45383ff7
Author | SHA1 | Date | |
---|---|---|---|
4f45383ff7 | |||
2a8e4393ae | |||
3a625f5b5b | |||
35f41f8c64 | |||
791fa74e78 | |||
17f6f877b6 |
4 changed files with 7 additions and 11 deletions
|
@ -8,11 +8,6 @@ license = "MIT"
|
|||
repository = "https://git.kemitix.net/kemitix/kxio"
|
||||
exclude = [".cargo_home"]
|
||||
|
||||
[features]
|
||||
default = ["fs", "network"]
|
||||
fs = []
|
||||
network = []
|
||||
|
||||
[lints.rust]
|
||||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
|
||||
|
||||
|
|
6
justfile
6
justfile
|
@ -1,7 +1,7 @@
|
|||
build:
|
||||
cargo build
|
||||
cargo test
|
||||
cargo clippy
|
||||
cargo hack --feature-powerset build
|
||||
cargo hack --feature-powerset test
|
||||
cargo hack --feature-powerset clippy
|
||||
|
||||
install-hooks:
|
||||
@echo "Installing git hooks"
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
//
|
||||
#[cfg(feature = "fs")]
|
||||
pub mod fs;
|
||||
|
||||
#[cfg(feature = "network")]
|
||||
pub mod network;
|
||||
|
|
4
src/tests/mod.rs
Normal file
4
src/tests/mod.rs
Normal file
|
@ -0,0 +1,4 @@
|
|||
//
|
||||
pub mod fs;
|
||||
|
||||
// pub mod network;
|
Loading…
Reference in a new issue