Skip to content

Commit

Permalink
Set the edition
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed Aug 8, 2024
1 parent ef53ce5 commit e564dfc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "special"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
authors = [
"Abhishek Chanda <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions src/beta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#![allow(unstable_name_collisions)]

#[allow(unused_imports)]
use primitive::Primitive;
use Gamma;
use crate::primitive::Primitive;
use crate::Gamma;

/// Beta functions.
pub trait Beta {
Expand Down
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use primitive::Primitive;
use crate::primitive::Primitive;

/// Error functions.
pub trait Error {
Expand Down
2 changes: 1 addition & 1 deletion src/gamma.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![allow(unstable_name_collisions)]

use primitive::Primitive;
use crate::primitive::Primitive;

/// Gamma functions.
pub trait Gamma
Expand Down

0 comments on commit e564dfc

Please sign in to comment.