commit 5cfc9447038d84dcd98af8dd3df4f620c1059297 Author: Albin Chaboissier Date: Tue Mar 10 20:05:34 2026 +0100 Initial commit for oxydsp ! diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8f24bd8 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,3 @@ +[workspace] +resolver = "3" +members = ["example","oxydsp-flowgraph"] diff --git a/example/.gitignore b/example/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/example/.gitignore @@ -0,0 +1 @@ +/target diff --git a/example/Cargo.toml b/example/Cargo.toml new file mode 100644 index 0000000..5d4c622 --- /dev/null +++ b/example/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "example" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/example/src/main.rs b/example/src/main.rs new file mode 100644 index 0000000..a4f2e4f --- /dev/null +++ b/example/src/main.rs @@ -0,0 +1,4 @@ +fn main() +{ + println!("Hello, world!"); +} diff --git a/oxydsp-flowgraph/.gitignore b/oxydsp-flowgraph/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/oxydsp-flowgraph/.gitignore @@ -0,0 +1 @@ +/target diff --git a/oxydsp-flowgraph/Cargo.toml b/oxydsp-flowgraph/Cargo.toml new file mode 100644 index 0000000..9e5aa63 --- /dev/null +++ b/oxydsp-flowgraph/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "oxydsp-flowgraph" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/oxydsp-flowgraph/src/main.rs b/oxydsp-flowgraph/src/main.rs new file mode 100644 index 0000000..a4f2e4f --- /dev/null +++ b/oxydsp-flowgraph/src/main.rs @@ -0,0 +1,4 @@ +fn main() +{ + println!("Hello, world!"); +}