Skip to content

Commit 1164fd1

Browse files
committed
gcore: remove non-working features kurbo and log
1 parent bfe8939 commit 1164fd1

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

node-graph/gcore/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ authors = ["Graphite Authors <[email protected]>"]
77
license = "MIT OR Apache-2.0"
88

99
[features]
10-
default = ["serde", "kurbo", "log", "wasm"]
11-
log = ["dep:log"]
10+
default = ["serde", "wasm"]
1211
nightly = []
1312
type_id_logging = []
1413
wasm = ["web-sys"]
@@ -54,11 +53,11 @@ image = { workspace = true, default-features = false, features = [
5453
# Required dependencies
5554
half = { version = "2.4.1", default-features = false, features = ["bytemuck"] }
5655
tinyvec = { version = "1" }
56+
kurbo = { workspace = true }
57+
log = { workspace = true }
5758

5859
# Optional workspace dependencies
5960
serde = { workspace = true, optional = true, features = ["derive"] }
60-
log = { workspace = true, optional = true }
61-
kurbo = { workspace = true, optional = true }
6261
base64 = { workspace = true, optional = true }
6362
vello = { workspace = true, optional = true }
6463
wgpu = { workspace = true, optional = true }

node-graph/gcore/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
extern crate alloc;
22

3-
#[cfg_attr(feature = "log", macro_use)]
4-
#[cfg(feature = "log")]
3+
#[macro_use]
54
extern crate log;
65
pub use crate as graphene_core;
76
pub use num_traits;

0 commit comments

Comments
 (0)