mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-10 04:27:40 +00:00
24 lines
314 B
TOML
24 lines
314 B
TOML
|
[package]
|
||
|
name = "session"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
license = "GPL-3.0-or-later"
|
||
|
|
||
|
[lints]
|
||
|
workspace = true
|
||
|
|
||
|
[lib]
|
||
|
path = "src/session.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[features]
|
||
|
test-support = [
|
||
|
"db/test-support",
|
||
|
]
|
||
|
|
||
|
[dependencies]
|
||
|
db.workspace = true
|
||
|
uuid.workspace = true
|
||
|
util.workspace = true
|