-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
59 lines (54 loc) · 1.82 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Copyright (C) 2014-2024 The SEA Language <https://sealang.org>
# All rights reserved.
#
# Developed by: Philipp Paulweber et al.
# <https://github.com/sealangdotorg/sea/graphs/contributors>
#
# This file is part of sea.
#
# sea is free software: you can redistribute it and/or modify it
# under the terms of the Mozilla Public License Version 2.0 (MPL-2.0).
#
# sea is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE.
# See the MPL-2.0 License for more details.
#
# You should have received a copy of the MPL-2.0 License along with sea.
# If not, see <https://www.mozilla.org/en-US/MPL/2.0/>.
#
# Please note that the attached MPL-2.0 license provides two additional
# exceptions in order to use the generated source code produced by sea
# compiler as well as the linking and integrating of sea interpreter
# runtime with the users license choice as long as the sea source code
# is unchanged and unaffected in any way.
#
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "sea-rs"
version = "0.0.0"
edition = "2021"
authors = [ "Philipp Paulweber et al."]
description = "The SEA Language"
homepage = "https://sealang.org/"
repository = "https://github.com/sealangdotorg/sea/"
license-file = "LICENSE"
# keywords = [""]
# categories = [""] # https://crates.io/category_slugs
include = [
"src/**.rs",
"Cargo.toml",
]
build = "src/build.rs"
[[bin]]
name = "sea"
path = "src/main.rs"
doc = false
test = false
bench = false
[dependencies]
clap = { version = "4.5.4", features = ["derive"] } # https://docs.rs/clap/latest/clap
shadow-rs = { version = "0.27.1" } # https://docs.rs/shadow-rs/latest/shadow_rs/
[build-dependencies]
shadow-rs = { version = "0.27.1" }