mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
339069b1d3
We temporarily let it grow when the message size exceed the limit, but restore the buffer's capacity shortly after. This ensures that, for each connection in its entire lifetime, we only ever use 1MB.
30 lines
941 B
TOML
30 lines
941 B
TOML
[package]
|
|
name = "vim"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/vim.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
assets = { path = "../assets" }
|
|
collections = { path = "../collections" }
|
|
editor = { path = "../editor" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
settings = { path = "../settings" }
|
|
workspace = { path = "../workspace" }
|
|
itertools = "0.10"
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
|
|
[dev-dependencies]
|
|
indoc = "1.0.4"
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
settings = { path = "../settings" }
|
|
workspace = { path = "../workspace", features = ["test-support"] } |