mirror of
https://github.com/RustAudio/rodio
synced 2024-12-12 21:22:36 +00:00
Swap cgmath
to nalgebra
crate.
This helps converge the rust ecosystem onto `nalgebra`.
This commit is contained in:
parent
94230abdab
commit
3ee73c5ad6
3 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ cpal = "0.8"
|
|||
hound = { version = "3.3.1", optional = true }
|
||||
lazy_static = "1.0.0"
|
||||
lewton = { version = "0.9", optional = true }
|
||||
cgmath = "0.14"
|
||||
nalgebra = "0.18"
|
||||
minimp3 = { version = "0.3.2", optional = true }
|
||||
|
||||
[features]
|
||||
|
|
|
@ -83,12 +83,12 @@
|
|||
|
||||
#![cfg_attr(test, deny(missing_docs))]
|
||||
|
||||
extern crate cgmath;
|
||||
#[cfg(feature = "flac")]
|
||||
extern crate claxon;
|
||||
extern crate cpal;
|
||||
#[cfg(feature = "wav")]
|
||||
extern crate hound;
|
||||
extern crate nalgebra;
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
#[cfg(feature = "vorbis")]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use cgmath::{InnerSpace, Point3};
|
||||
use nalgebra::Point3;
|
||||
use source::ChannelVolume;
|
||||
use std::fmt::Debug;
|
||||
use std::time::Duration;
|
||||
|
|
Loading…
Reference in a new issue