-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (71 loc) · 2.71 KB
/
Copy pathCargo.toml
File metadata and controls
85 lines (71 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
cargo-features = ["profile-rustflags"]
[workspace]
members = ["./.", "analysis"]
resolver = "2"
[workspace.dependencies]
biocore = { git = "https://github.com/QuartzLibrary/bio", rev = "2895f5feed801850d39bd2e429220ac1785c6c50" }
genomes1000 = { git = "https://github.com/QuartzLibrary/bio", rev = "2895f5feed801850d39bd2e429220ac1785c6c50" }
hail = { git = "https://github.com/QuartzLibrary/bio", rev = "2895f5feed801850d39bd2e429220ac1785c6c50" }
ids = { git = "https://github.com/QuartzLibrary/bio", rev = "2895f5feed801850d39bd2e429220ac1785c6c50" }
liftover = { git = "https://github.com/QuartzLibrary/bio", rev = "2895f5feed801850d39bd2e429220ac1785c6c50" }
pan_ukbb = { git = "https://github.com/QuartzLibrary/bio", rev = "2895f5feed801850d39bd2e429220ac1785c6c50" }
pgs_catalog = { git = "https://github.com/QuartzLibrary/bio", rev = "2895f5feed801850d39bd2e429220ac1785c6c50" }
resource = { git = "https://github.com/QuartzLibrary/bio", rev = "2895f5feed801850d39bd2e429220ac1785c6c50" }
utile = { git = "https://github.com/QuartzLibrary/bio", rev = "2895f5feed801850d39bd2e429220ac1785c6c50" }
leptos_ext = { git = "https://github.com/QuartzLibrary/leptos_ext", rev = "3f4145508710bbc51577a7a8a702104b277fcfa8" }
[package]
name = "edit"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "app"
path = "src/bins/app/main.rs"
[[bin]]
name = "ukbb"
path = "src/bins/ukbb_main.rs"
[[bin]]
name = "pgs"
path = "src/bins/pgs_main.rs"
[dependencies]
analysis = { path = "analysis" }
biocore.workspace = true
hail.workspace = true
pan_ukbb.workspace = true
pgs_catalog.workspace = true
resource.workspace = true
utile.workspace = true
leptos_ext.workspace = true
either = "1"
flate2 = "1"
log = "0.4"
ordered-float = { version = "5", features = ["serde"] }
reqwest = { version = "0.12", features = ["json"] }
send_wrapper = { version = "0.6.0", features = ["futures"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
web-time = "1"
console_error_panic_hook = "0.1"
console_log = "1"
gloo-render = "0.2"
# Pinned because of conflicting reqwest versions.
leptos = { version = "=0.8.15", features = ["csr", "rustls"] }
server_fn = "=0.8.9"
any_spawner = "0.3" # Leptos related
thaw = { version = "0.5.0-beta", features = ["csr"] }
web-sys = { version = "0.3", features = [
"Element",
"Document",
"DomRect",
"MediaQueryList",
"MediaQueryListEvent",
"MediaQueryListEventInit",
] }
gloo-console = "0.3"
gloo-worker = { version = "0.5", features = ["futures"] }
plotly = { version = "0.12", features = ["wasm"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
getrandom = { version = "0.3", features = ["wasm_js"] }
getrandom2 = { version = "0.2", features = ["js"], package = "getrandom" }
rand = "0.9.1"
futures = "0.3.31"