mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
7e5a3f9f6b
We're enabling the log crate feature everywhere, but only using it on the server for now. Co-Authored-By: Antonio Scandurra <me@as-cii.com>
33 lines
818 B
TOML
33 lines
818 B
TOML
[package]
|
|
name = "text"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/text.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = ["rand"]
|
|
|
|
[dependencies]
|
|
clock = { path = "../clock" }
|
|
collections = { path = "../collections" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
anyhow = "1.0.38"
|
|
arrayvec = "0.7.1"
|
|
lazy_static = "1.4"
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
parking_lot = "0.11"
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
rand = { version = "0.8.3", optional = true }
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
|
|
[dev-dependencies]
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
ctor = "0.1"
|
|
env_logger = "0.8"
|
|
rand = "0.8.3"
|