mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
21 lines
374 B
TOML
21 lines
374 B
TOML
|
[package]
|
||
|
name = "lune-std-datetime"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
license = "MPL-2.0"
|
||
|
|
||
|
[lib]
|
||
|
path = "src/lib.rs"
|
||
|
|
||
|
[lints]
|
||
|
workspace = true
|
||
|
|
||
|
[dependencies]
|
||
|
mlua = { version = "0.9.7", features = ["luau"] }
|
||
|
|
||
|
thiserror = "1.0"
|
||
|
chrono = "=0.4.34" # NOTE: 0.4.35 does not compile with chrono_lc
|
||
|
chrono_lc = "0.1"
|
||
|
|
||
|
lune-utils = { version = "0.1.0", path = "../lune-utils" }
|