-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (34 loc) · 1.18 KB
/
Cargo.toml
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
[package]
name = "fsrs-browser"
version = "2.0.3"
edition = "2021"
authors = ["Open Spaced Repetition"]
categories = ["algorithms", "science"]
homepage = "https://github.com/open-spaced-repetition"
keywords = ["spaced-repetition", "algorithm", "fsrs", "machine-learning"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/open-spaced-repetition/fsrs-browser"
description = "FSRS for the browser, including Optimizer and Scheduler"
[lib]
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
console_error_panic_hook = "0.1.7"
console_log = { version = "1" }
log = { default-features = false, version = "0.4.25" }
wasm-bindgen = "0.2.100"
[dependencies.fsrs]
path = "./fsrs-rs"
# git = "https://github.com/open-spaced-repetition/fsrs-rs.git"
# rev = "5d67e1c0c82e56b49e3c9b3403da4ce703823b5f"
[dependencies.burn]
# version = "0.10.0"
# git = "https://github.com/burn-rs/burn.git"
# rev = "d06cc2f239c53e7f88dad7e0b2bbe6757a17d66c"
path = "./burn/crates/burn"
default-features = false
features = ["std", "train", "autodiff", "browser", "ndarray"]
[profile.release]
codegen-units = 1
lto = "fat"