Remove self dep on burn-remote

This commit is contained in:
Guillaume Lagrange
2025-01-14 15:49:32 -05:00
parent 3a6a456d2b
commit dd628ec91c
3 changed files with 1 additions and 6 deletions

1
Cargo.lock generated
View File

@@ -874,7 +874,6 @@ dependencies = [
"async-channel",
"axum",
"burn-common",
"burn-remote",
"burn-router",
"burn-tensor",
"derive-new 0.7.0",

View File

@@ -43,10 +43,6 @@ axum = { version = "0.8.1", features = ["ws"], optional = true }
tracing-core = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, optional = true }
[dev-dependencies]
# We activate the features client and server during dev.
burn-remote = { path = ".", version = "0.16.0", features=["client", "server"] }
[package.metadata.docs.rs]
features = ["doc"]
rustdoc-args = ["--cfg", "docsrs"]

View File

@@ -76,6 +76,7 @@ allow = [
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause",
"BSL-1.0", # in NOTICES.md
"CC0-1.0",
"ISC",
"MIT",
@@ -92,5 +93,4 @@ exceptions = [
# Each entry is the crate and version constraint, and its specific allow
# list
#{ allow = ["license_name"], name = "crate", version = "*" },
{ allow = ["BSL-1.0"], name = "clipboard-win", version = "*" }, # in NOTICES.md
]