Compare commits

...

2 commits

Author SHA1 Message Date
07eaa09d11 build: Add .git-next.toml config file
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-04-16 07:06:50 +01:00
ff69ed2f23 feat!: split into non-default features fs and network
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Closes kemitix/kxio#11
2024-04-16 07:06:50 +01:00
3 changed files with 12 additions and 0 deletions

6
.git-next.toml Normal file
View file

@ -0,0 +1,6 @@
[branches]
main = "main"
next = "next"
dev = "dev"
[options]

View file

@ -8,6 +8,10 @@ license = "MIT"
repository = "https://git.kemitix.net/kemitix/kxio"
exclude = [".cargo_home"]
[features]
fs = []
network = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View file

@ -1,2 +1,4 @@
#[cfg(feature = "fs")]
pub mod filesystem;
#[cfg(feature = "network")]
pub mod network;