Skip to content
This repository has been archived by the owner on Oct 12, 2024. It is now read-only.

Relax version bounds #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ repository = "https://github.com/nukep/glium-sdl2/"
description = "An SDL2 backend for Glium - a high-level OpenGL wrapper for the Rust language."

[dependencies]
sdl2 = "0.19"
sdl2 = "*"

[dependencies.glium]
version = "0.14"
version = "*"
# Do not enable any features by default, as to not bring in unwanted dependencies
# (Cargo seems to apply a "union" of requested features across projects for any given dependency).
# Instead, Let the library user define which features they want.
features = []
default-features = false

[dev-dependencies]
clock_ticks = "0.1.0"
genmesh = "0.4"
obj = { version = "0.5", features = ["usegenmesh"] }
clock_ticks = "*"
genmesh = "*"
obj = { version = "*", features = ["usegenmesh"] }