Initial commit for oxydsp !
This commit is contained in:
3
Cargo.toml
Normal file
3
Cargo.toml
Normal file
@ -0,0 +1,3 @@
|
||||
[workspace]
|
||||
resolver = "3"
|
||||
members = ["example","oxydsp-flowgraph"]
|
||||
1
example/.gitignore
vendored
Normal file
1
example/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/target
|
||||
6
example/Cargo.toml
Normal file
6
example/Cargo.toml
Normal file
@ -0,0 +1,6 @@
|
||||
[package]
|
||||
name = "example"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
4
example/src/main.rs
Normal file
4
example/src/main.rs
Normal file
@ -0,0 +1,4 @@
|
||||
fn main()
|
||||
{
|
||||
println!("Hello, world!");
|
||||
}
|
||||
1
oxydsp-flowgraph/.gitignore
vendored
Normal file
1
oxydsp-flowgraph/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/target
|
||||
6
oxydsp-flowgraph/Cargo.toml
Normal file
6
oxydsp-flowgraph/Cargo.toml
Normal file
@ -0,0 +1,6 @@
|
||||
[package]
|
||||
name = "oxydsp-flowgraph"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
4
oxydsp-flowgraph/src/main.rs
Normal file
4
oxydsp-flowgraph/src/main.rs
Normal file
@ -0,0 +1,4 @@
|
||||
fn main()
|
||||
{
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Reference in New Issue
Block a user