mirror of
https://github.com/bytedance/g3.git
synced 2026-05-02 13:40:42 +00:00
22 lines
575 B
TOML
22 lines
575 B
TOML
[package]
|
|
name = "g3-msgpack"
|
|
version = "0.1.0"
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version = "1.60.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
rmpv.workspace = true
|
|
uuid.workspace = true
|
|
atoi.workspace = true
|
|
chrono = { workspace = true, features = ["std"] }
|
|
rustls = { workspace = true, optional = true }
|
|
rustls-pemfile = { workspace = true, optional = true }
|
|
g3-types.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
rustls = ["dep:rustls", "dep:rustls-pemfile"]
|