This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1[package] 2name = "shapemaker" 3version = "1.2.2" 4rust-version = "1.90" 5edition = "2024" 6include = ["/src"] 7license = "AGPL-3.0" 8homepage = "https://gwen.works/shapemaker" 9repository = "https://github.com/gwennlbh/shapemaker" 10authors = ["Gwenn Le Bihan <gwenn.lebihan7@gmail.com>"] 11description = "An experimental WASM-capable, generative SVG-based video rendering engine that reacts to MIDI or audio data" 12 13[workspace] 14members = [ 15 "examples/dna-analysis-machine", 16 "examples/schedule-hell", 17 "examples/specimen", 18 "examples/playground", 19 "xtask", 20] 21 22[lib] 23crate-type = ["cdylib", "lib"] 24 25# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 26 27[features] 28default = ["vst", "video", "video-server", "channels-console"] 29vst = [ 30 "rand/thread_rng", 31 "dep:env_logger", 32 "dep:nih_plug", 33 "dep:ws", 34 "dep:tungstenite", 35] 36web = ["dep:wasm-bindgen", "dep:serde-wasm-bindgen", "dep:web-sys"] 37video = [ 38 "dep:env_logger", 39 "dep:vgv", 40 "dep:notify-rust", 41 "dep:tokio", 42 "dep:easing-function", 43] 44video-server = ["dep:axum"] 45serde-wasm-bindgen = ["dep:serde-wasm-bindgen"] 46channels-console = ["dep:channels-console"] 47 48[dependencies] 49nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", features = [ 50 "assert_process_allocs", 51], optional = true } 52anyhow = "1.0.100" 53chrono = "0.4.42" 54indicatif = "0.18.3" 55itertools = "0.14.0" 56midly = "0.5.3" 57rand = { version = "0.9.2", default-features = false, features = [ 58 "small_rng", 59 "std", 60 "std_rng", 61] } 62serde_cbor = "0.11.2" 63serde_json = "1.0.145" 64wasm-bindgen = { version = "0.2.105", optional = true } 65getrandom = { version = "0.2", features = ["js"] } 66web-sys = { version = "0.3.82", optional = true, features = [ 67 'Document', 68 'Element', 69 'HtmlElement', 70 'Node', 71 'Window', 72] } 73once_cell = "1.21.3" 74nanoid = "0.4.0" 75console = { version = "0.16.1", features = ["windows-console-colors"] } 76backtrace = "0.3.76" 77slug = "0.1.6" 78roxmltree = "0.21.1" 79strum = { version = "0.27.2", features = ["strum_macros"] } 80strum_macros = "0.27.2" 81tiny-skia = "0.11.4" 82resvg = "0.45.1" 83measure_time = "0.9.0" 84env_logger = { version = "0.11.8", optional = true } 85log = "0.4.28" 86rayon = "1.11.0" 87ws = { version = "0.9.2", optional = true } 88toml = "0.9.8" 89serde = { version = "1.0.228", features = ["derive"] } 90url = "2.5.7" 91tungstenite = { version = "0.28.0", optional = true } 92axum = { version = "0.8.7", optional = true, features = ["json"] } 93vgv = { git = "https://github.com/gwennlbh/vgvf", version = "0.1.0", optional = true } 94serde-aux = "4.7.0" 95notify-rust = { version = "4.11.7", optional = true } 96tokio = { version = "1.48.0", optional = true } 97easing-function = { version = "0.1.1", optional = true } 98quick-xml = "0.38.4" 99num = "0.4.3" 100serde-wasm-bindgen = { version = "0.6.5", optional = true } 101channels-console = { version = "0.3.3", optional = true } 102 103 104[dev-dependencies] 105insta = "1.43.2" 106rust-analyzer = "0.0.1"