jl-types-rs/Cargo.toml

22 lines
591 B
TOML
Raw Normal View History

2023-03-15 00:57:57 +00:00
[package]
name = "jl-types"
version = "0.1.0"
edition = "2021"
[lib]
[dependencies]
chrono = { version = "0.4.23", features = [ "serde" ] }
chrono-tz = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.88"
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde"] }
format_num = "0.1.0"
2023-03-15 23:41:20 +00:00
sqlx = { version = "0.6.0", features = [ "runtime-tokio-rustls", "postgres", "chrono", "uuid" ], optional = true }
2023-03-15 00:57:57 +00:00
bincode = "1.3.3"
2023-03-15 23:41:20 +00:00
yew = { version = "0.20.0", optional = true }
2023-03-15 00:57:57 +00:00
[features]
2023-03-15 23:41:20 +00:00
sqlx = ["dep:sqlx"]
wasm = ["uuid/js"]
yew = ["dep:yew"]