Skip to content

Commit

Permalink
Disabled default features
Browse files Browse the repository at this point in the history
This commit is Part 1 of #12
  • Loading branch information
AS1100K committed Feb 5, 2025
1 parent 1bef5d2 commit b04df35
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bevy-discord"
description = "A bevy plugin for sending and receiving discord messages."
version = "0.6.0-alpha.3"
version = "0.6.0-rc.1"
edition = "2021"
authors = ["Aditya Kumar <[email protected]>"]
readme = "README.md"
Expand All @@ -17,11 +17,13 @@ http = ["dep:serenity"]
bot_cache = ["serenity/cache"]
rich_presence = ["dep:discord-sdk", "dep:async-trait"]
rich_presence_local_testing = ["discord-sdk/local-testing"]
docsrs = [] # Don't use this feature anywhere other than cargo doc, examples and rustdoc

# Don't use this feature anywhere other than cargo doc, examples and rustdoc
docsrs = []

[dependencies]
bevy_app = "0.15"
bevy_ecs = "0.15"
bevy_app = { version = "0.15", default-features = false }
bevy_ecs = { version = "0.15", default-features = false }
flume = "0.11"
serenity = { version = "0.12", features = [
"gateway",
Expand Down Expand Up @@ -57,4 +59,4 @@ doc-scrape-examples = true

[[example]]
name = "rich_presence"
doc-scrape-examples = true
doc-scrape-examples = true
1 change: 1 addition & 0 deletions PRERELEASE-CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Hide functions available in `docsrs` feature
- `plugins` module is now private
- disabled default features of dependencies

### Fixed
- Typos in documentation
Expand Down

0 comments on commit b04df35

Please sign in to comment.