mirror of
https://github.com/bytedance/g3.git
synced 2026-05-19 16:28:21 +00:00
19 lines
511 B
TOML
19 lines
511 B
TOML
[package]
|
|
name = "g3-runtime"
|
|
version = "0.3.0"
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version = "1.70.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
log.workspace = true
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "rt", "sync", "net"] }
|
|
g3-compat.workspace = true
|
|
g3-openssl = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
openssl-async-job = ["g3-openssl/async-job"]
|