Skip to content

Commit

Permalink
bump version, add docs to comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zeozeozeo committed Dec 30, 2023
1 parent e3bac25 commit 55e7533
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "kittyaudio"
description = "An audio playback library focusing on simplicity"
license = "MIT OR BSL-1.0"
version = "0.1.6"
version = "0.1.7"
exclude = ["assets/**"]
documentation = "https://docs.rs/kittyaudio"
homepage = "https://github.com/zeozeozeo/kittyaudio"
Expand All @@ -23,6 +23,9 @@ thiserror = "1.0.50"

[features]
default = ["symphonia", "cpal"]
# symphonia feature - Audio decoding support with [`symphonia`].
# cpal feature - Audio playback support with [`cpal`].
# Disable this if you want to use kittyaudio purely as an audio library.

## Audio decoding support
symphonia = ["dep:symphonia"]

## Audio playback support, disable if you want to use kittyaudio purely as an audio library
cpal = ["dep:cpal"]

0 comments on commit 55e7533

Please sign in to comment.