forked from Adapton/adapton.rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (27 loc) · 1.32 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
[package]
name = "adapton"
version = "0.3.31"
edition = "2018"
authors = ["Matthew A. Hammer <[email protected]>"]
# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown)
description = "programming abstractions for general-purpose incremental computations"
# These URLs point to more information about the repository
documentation = "https://docs.rs/adapton"
homepage = "http://adapton.org"
repository = "https://github.com/Adapton/adapton.rust/"
# This points to a file in the repository (relative to this Cargo.toml). The
# contents of this file are stored and indexed in the registry.
readme = "README.md"
# This is a small list of keywords used to categorize and search for this
# package.
keywords = ["Incremental", "Memoization", "Dependency-Graph", "Demand-driven", "Lazy"]
# This is a string description of the license for this package. Currently
# crates.io will validate the license provided against a whitelist of known
# license identifiers from http://spdx.org/licenses/. Multiple licenses can
# be separated with a `/`
license = "MPL-2.0"
# If a project is using a nonstandard license, then this key may be specified in
# lieu of the above key and must point to a file relative to this manifest
# (similar to the readme key)
# license-file = "LICENSE-MPL2.0"