Skip to content

Commit

Permalink
Make Roblox feature on by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Kampfkarren committed Nov 8, 2019
1 parent d2e5fd9 commit 0435390
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v1
- name: Build (Lightweight)
run: |
cargo build --locked --release --verbose --bin selene
cargo build --locked --release --verbose --bin selene --no-default-features
New-Item release -ItemType "directory"
Move-Item .\target\release\selene.exe .\release\selene-light.exe
- name: Build (All features)
Expand Down
1 change: 1 addition & 0 deletions selene-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ pretty_assertions = "0.6"
termcolor = "1.0"

[features]
default = ["roblox"]
roblox = ["rbx_reflection"]
3 changes: 2 additions & 1 deletion selene/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ threadpool = "1.7"
toml = "0.5"

[features]
roblox = ["selene-lib/roblox"]
default = ["roblox"]
roblox = ["selene-lib/roblox"]

0 comments on commit 0435390

Please sign in to comment.