-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (19 loc) · 896 Bytes
/
Cargo.toml
File metadata and controls
23 lines (19 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package={name='music', version='0.0.0', edition='2024'}
build-dependencies={wgsl={git='https://github.com/Matthias-Fauconneau/ui'}}
[dependencies]
roxmltree='*'
itertools='*'
derive-more={package='derive_more', version='*', features=['from_str']}
num={git='https://github.com/Matthias-Fauconneau/num'}
vector={git='https://github.com/Matthias-Fauconneau/vector'}
ui={git='https://github.com/Matthias-Fauconneau/ui', features=['text','graphic']}
bytemuck='*'
vulkano = { git='https://github.com/vulkano-rs/vulkano', default-features=false, features=['macros'] }
vulkano-spirv = { git='https://github.com/Matthias-Fauconneau/vulkano-spirv' }
[patch.'https://github.com/vulkano-rs/vulkano']
vulkano = { git='https://github.com/Matthias-Fauconneau/vulkano' } # drm modifier
[patch.'https://github.com/Matthias-Fauconneau/ui']
ui={path='../ui'}
[profile.dev]
opt-level = 1
overflow-checks = false