mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-04-05 06:51:51 +00:00
Use specified version of datetime
This prevents crates.io from doing weird things from a circular depedency, which is probably my fault.
This commit is contained in:
parent
131dd606da
commit
9dbca5f12a
24
Cargo.lock
generated
24
Cargo.lock
generated
@ -3,8 +3,8 @@ name = "exa"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"ansi_term 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"datetime 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"datetime 0.1.2 (git+https://github.com/ogham/rust-datetime.git)",
|
||||||
"datetime_macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"datetime_macros 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"getopts 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"getopts 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"git2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
"git2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"natord 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
"natord 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
@ -29,7 +29,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "datetime"
|
name = "datetime"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
|
source = "git+https://github.com/ogham/rust-datetime.git#c108628eb3519535821bc7907f2305643465acf5"
|
||||||
|
dependencies = [
|
||||||
|
"pad 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"regex 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"regex_macros 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "datetime"
|
||||||
|
version = "0.1.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"pad 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"pad 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
@ -39,10 +49,10 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "datetime_macros"
|
name = "datetime_macros"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"datetime 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"datetime 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"pad 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"pad 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -56,7 +66,7 @@ name = "getopts"
|
|||||||
version = "0.2.3"
|
version = "0.2.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"log 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"log 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -113,7 +123,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "log"
|
name = "log"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -8,7 +8,6 @@ name = "exa"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ansi_term = "0.4.5"
|
ansi_term = "0.4.5"
|
||||||
datetime = "0.1.2"
|
|
||||||
datetime_macros = "0.1.2"
|
datetime_macros = "0.1.2"
|
||||||
getopts = "0.2.1"
|
getopts = "0.2.1"
|
||||||
natord = "1.0.7"
|
natord = "1.0.7"
|
||||||
@ -23,3 +22,6 @@ git = [ "git2" ]
|
|||||||
[dependencies.git2]
|
[dependencies.git2]
|
||||||
version = "0.1.13"
|
version = "0.1.13"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
|
[dependencies.datetime]
|
||||||
|
git = "https://github.com/ogham/rust-datetime.git"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user