Hoist nanoid to workspace-level (#11029)

This PR hoists `nanoid` up to a workspace dependency.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-04-25 22:37:40 -04:00 committed by GitHub
parent 6d7332e80c
commit a4ad3bcc08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 5 deletions

View file

@ -35,7 +35,7 @@ gpui = { workspace = true, optional = true }
live_kit_server = { workspace = true, optional = true }
log.workspace = true
media.workspace = true
nanoid = { version = "0.4", optional = true}
nanoid = { workspace = true, optional = true}
parking_lot.workspace = true
postage.workspace = true
@ -47,14 +47,14 @@ async-trait = { workspace = true }
collections = { workspace = true }
gpui = { workspace = true }
live_kit_server.workspace = true
nanoid = "0.4"
nanoid.workspace = true
[dev-dependencies]
async-trait.workspace = true
collections = { workspace = true, features = ["test-support"] }
gpui = { workspace = true, features = ["test-support"] }
live_kit_server.workspace = true
nanoid = "0.4"
nanoid.workspace = true
sha2.workspace = true
simplelog = "0.9"